コード例 #1
0
ファイル: test_calendar_registry.py プロジェクト: GuidoE/pyql
    def test_help(self):
         registry = initialize_code_registry()

         content = registry.help()

         self.assertIsNotNone(content)
コード例 #2
0
 def test_basic_usage(self):
     registry = initialize_code_registry()
     calendar = registry.from_name('TARGET')
     self.assertIsInstance(calendar, TARGET)
コード例 #3
0
ファイル: test_calendar_registry.py プロジェクト: GuidoE/pyql
 def test_basic_usage(self):
     registry = initialize_code_registry()
     calendar = registry.from_name('TARGET')
     self.assertIsInstance(calendar, TARGET)
コード例 #4
0
    def test_help(self):
        registry = initialize_code_registry()

        content = registry.help()

        self.assertIsNotNone(content)