Exemple #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())
Exemple #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())
Exemple #3
0
 def test_no_environment_file(self):
     spec = YamlFileSpec(name=None, filename='not-a-file')
     self.assertEqual(spec.can_handle(), False)
Exemple #4
0
 def test_no_environment_file(self):
     spec = YamlFileSpec(name=None, filename='not-a-file')
     self.assertEqual(spec.can_handle(), False)