Example #1
0
    def test_help(self):
         registry = initialize_code_registry()

         content = registry.help()

         self.assertIsNotNone(content)
Example #2
0
 def test_basic_usage(self):
     registry = initialize_code_registry()
     calendar = registry.from_name('TARGET')
     self.assertIsInstance(calendar, TARGET)
Example #3
0
 def test_basic_usage(self):
     registry = initialize_code_registry()
     calendar = registry.from_name('TARGET')
     self.assertIsInstance(calendar, TARGET)
Example #4
0
    def test_help(self):
        registry = initialize_code_registry()

        content = registry.help()

        self.assertIsNotNone(content)