~marcoceppi/charm-tools/patch-generate-path

« back to all changes in this revision

Viewing changes to tests_functional/create/test_python_create.py

  • Committer: Tim Van Steenburgh
  • Date: 2015-08-20 13:31:58 UTC
  • Revision ID: tim.van.steenburgh@canonical.com-20150820133158-naj7lmcxbr2vdkcf
Update bundle proof for v4.

With v4, the expected bundle file name is bundle.yaml instead of
bundles.yaml.

Also fixed some charm-create tests that were failing due to new files in
charmhelpers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
        dynamic_files = [
54
54
            'lib/charmhelpers/__init__.py',
55
55
            'lib/charmhelpers/core/__init__.py',
 
56
            'lib/charmhelpers/core/decorators.py',
 
57
            'lib/charmhelpers/core/files.py',
56
58
            'lib/charmhelpers/core/fstab.py',
57
59
            'lib/charmhelpers/core/hookenv.py',
58
60
            'lib/charmhelpers/core/host.py',
 
61
            'lib/charmhelpers/core/hugepage.py',
59
62
            'lib/charmhelpers/core/services/__init__.py',
60
63
            'lib/charmhelpers/core/services/base.py',
61
64
            'lib/charmhelpers/core/services/helpers.py',
 
65
            'lib/charmhelpers/core/strutils.py',
62
66
            'lib/charmhelpers/core/sysctl.py',
63
67
            'lib/charmhelpers/core/templating.py',
 
68
            'lib/charmhelpers/core/unitdata.py',
64
69
        ]
65
70
        return sorted(static_files + dynamic_files)
66
71