コード例 #1
0
ファイル: test_workspace.py プロジェクト: rileyhales/tethys
 def setUp(self):
     self.root = os.path.abspath(os.path.dirname(__file__))
     self.test_root = os.path.join(self.root, 'test_workspace')
     self.test_root_a = os.path.join(self.test_root, 'test_workspace_a')
     self.test_root2 = os.path.join(self.root, 'test_workspace2')
     self.app = tethys_app_base.TethysAppBase()
     self.user = UserFactory()
コード例 #2
0
ファイル: test_app_base.py プロジェクト: john3641/tethys
 def test_job_templates(self):
     self.assertIsNone(tethys_app_base.TethysAppBase().job_templates())
コード例 #3
0
ファイル: test_app_base.py プロジェクト: john3641/tethys
 def test_permissions(self):
     self.assertIsNone(tethys_app_base.TethysAppBase().permissions())
コード例 #4
0
ファイル: test_app_base.py プロジェクト: john3641/tethys
 def test_handoff_handlers(self):
     self.assertIsNone(tethys_app_base.TethysAppBase().handoff_handlers())
コード例 #5
0
ファイル: test_app_base.py プロジェクト: john3641/tethys
 def test_web_processing_service_settings(self):
     self.assertIsNone(
         tethys_app_base.TethysAppBase().web_processing_service_settings())
コード例 #6
0
ファイル: test_app_base.py プロジェクト: john3641/tethys
 def test_spatial_dataset_service_settings(self):
     self.assertIsNone(
         tethys_app_base.TethysAppBase().spatial_dataset_service_settings())
コード例 #7
0
ファイル: test_app_base.py プロジェクト: john3641/tethys
 def test_persistent_store_settings(self):
     self.assertIsNone(
         tethys_app_base.TethysAppBase().persistent_store_settings())
コード例 #8
0
ファイル: test_app_base.py プロジェクト: john3641/tethys
 def test_custom_settings(self):
     self.assertIsNone(tethys_app_base.TethysAppBase().custom_settings())
コード例 #9
0
ファイル: test_app_base.py プロジェクト: john3641/tethys
 def test__repr__(self):
     result = tethys_app_base.TethysAppBase().__repr__()
     self.assertEqual('<TethysApp: >', result)
コード例 #10
0
ファイル: test_app_base.py プロジェクト: john3641/tethys
 def setUp(self):
     self.app = tethys_app_base.TethysAppBase()
     self.user = UserFactory()
     self.request_factory = RequestFactory()
     self.fake_name = 'fake_name'