コード例 #1
0
ファイル: test_base.py プロジェクト: anupkrish24/kaLLogs
 def test_set_options(self, *args):
     storage = get_storage(options=STORAGE_OPTIONS)
     self.assertEqual(storage.__module__, DEFAULT_STORAGE_PATH)
コード例 #2
0
ファイル: test_base.py プロジェクト: anupkrish24/kaLLogs
 def test_set_path(self):
     storage = get_storage(path=FakeStorage.__module__)
     self.assertIsInstance(storage, FakeStorage)
コード例 #3
0
ファイル: test_base.py プロジェクト: anupkrish24/kaLLogs
 def test_func(self, *args):
     storage = get_storage()
     self.assertEqual(storage.__module__, DEFAULT_STORAGE_PATH)
コード例 #4
0
 def test_set_options(self, *args):
     storage = get_storage(options=STORAGE_OPTIONS)
     self.assertEqual(storage.__module__, DEFAULT_STORAGE_PATH)
コード例 #5
0
 def test_set_path(self):
     storage = get_storage(path=FakeStorage.__module__)
     self.assertIsInstance(storage, FakeStorage)
コード例 #6
0
 def test_func(self, *args):
     storage = get_storage()
     self.assertEqual(storage.__module__, DEFAULT_STORAGE_PATH)