예제 #1
0
 def test_environment_file_exist(self):
     with mock.patch.object(env, 'from_file', return_value={}):
         spec = YamlFileSpec(name=None, filename='environment.yaml')
         self.assertTrue(spec.can_handle())
예제 #2
0
 def test_environment_file_exist(self):
     with mock.patch.object(env, 'from_file', return_value={}):
         spec = YamlFileSpec(name=None, filename='environment.yaml')
         self.assertTrue(spec.can_handle())
예제 #3
0
 def test_no_environment_file(self):
     spec = YamlFileSpec(name=None, filename='not-a-file')
     self.assertEqual(spec.can_handle(), False)
예제 #4
0
 def test_no_environment_file(self):
     spec = YamlFileSpec(name=None, filename='not-a-file')
     self.assertEqual(spec.can_handle(), False)