Exemple #1
0
 def it_loads_file_var(self):
     with mock.patch.dict(os.environ, [('SVWAIT', '6')]):
         filename = 'wait-ready'
         with open(filename, 'w') as f:
             f.write('5')
         result = poll_ready.getval(filename, 'SVWAIT', '2')
         assert isinstance(result, float)
         assert result == 5.0
Exemple #2
0
 def it_loads_default_var(self):
     result = poll_ready.getval('does not exist', 'SVWAIT', '2')
     assert isinstance(result, float)
     assert result == 2.0
Exemple #3
0
 def it_loads_environment_var(self):
     with mock.patch.dict(os.environ, [('SVWAIT', '5')]):
         result = poll_ready.getval('does not exist', 'SVWAIT', '2')
         assert isinstance(result, float)
         assert result == 5.0