~gnuoy/charms/trusty/quantum-gateway/fix-1361712

« back to all changes in this revision

Viewing changes to unit_tests/test_utils.py

  • Committer: James Page
  • Date: 2014-04-16 08:28:29 UTC
  • mfrom: (41.3.49 quantum-gateway)
  • Revision ID: james.page@canonical.com-20140416082829-o7ojjk3oes6ksb69
[yolanda.robla,james-page,hazmat,r=james-page,t=*]

Support for Icehouse on 12.04 and 14.04
Support for Active/Active and SSL RabbitMQ
Support for SSL MySQL
Support for SSL endpoints
Support for PostgreSQL

Show diffs side-by-side

added added

removed removed

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