~charmers/charms/precise/glance/trunk

« back to all changes in this revision

Viewing changes to unit_tests/test_utils.py

  • Committer: James Page
  • Date: 2013-11-08 05:31:34 UTC
  • mfrom: (42.1.2 glance)
  • Revision ID: james.page@canonical.com-20131108053134-639ubd0x4w4addkz
[merge][trivial] Tidy flake8 lint

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
 
46
46
 
47
47
class CharmTestCase(unittest.TestCase):
 
48
 
48
49
    def setUp(self, obj, patches):
49
50
        super(CharmTestCase, self).setUp()
50
51
        self.patches = patches
65
66
 
66
67
 
67
68
class TestConfig(object):
 
69
 
68
70
    def __init__(self):
69
71
        self.config = get_default_config()
70
72
 
86
88
 
87
89
 
88
90
class TestRelation(object):
 
91
 
89
92
    def __init__(self, relation_data={}):
90
93
        self.relation_data = relation_data
91
94