~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/config/tests/test_config.py

  • Committer: Curtis Hovey
  • Date: 2011-12-29 05:40:17 UTC
  • mto: This revision was merged to the branch mainline in revision 14606.
  • Revision ID: curtis.hovey@canonical.com-20111229054017-e6ulob0k70kz3sj2
Renamed CanonicalConfig to LaunchpadConfig because that is what it is doing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
    return LAZRConfigTestCase
71
71
 
72
72
 
73
 
class TestCanonicalConfig(unittest.TestCase):
 
73
class TestLaunchpadConfig(unittest.TestCase):
74
74
 
75
75
    def test_dir(self):
76
76
        # dir(config) returns methods, variables and section names.
119
119
                    # This file is not a config that can be validated.
120
120
                    pass
121
121
    # Other tests.
122
 
    suite.addTest(load_testcase(TestCanonicalConfig))
 
122
    suite.addTest(load_testcase(TestLaunchpadConfig))
123
123
    return suite