Example #1
0
    def test_set_autoconfig_attributes(self):
        settings = AutoConfigSettings.get(self.session)

        for method in dir(settings):
            if method.startswith('set_'):
                a = getattr(settings, method)
                a('foo')
Example #2
0
    def test_set_autoconfig_attributes(self):
        settings = AutoConfigSettings.get(self.session)

        for method in dir(settings):
            if method.startswith('set_'):
                a = getattr(settings, method)
                a('foo')
Example #3
0
 def test_get_auto_config_settings(self):
     settings = AutoConfigSettings.get(self.session)
     self.assertIsInstance(settings, AutoConfigSettings)
Example #4
0
 def test_create_blank_autoconfig(self):
     ac = AutoConfigSettings()
     self.assertIsInstance(ac, AutoConfigSettings)
Example #5
0
 def test_get_auto_config_settings(self):
     settings = AutoConfigSettings.get(self.session)
     self.assertIsInstance(settings, AutoConfigSettings)