def test_with_password_file(self):
     password.os.path.exists = lambda x: True
     with patch.object(builtins, 'open',
                       mock_open(read_data=b'Testing\n')) as m:
         self.assertEqual(password._read_password_file(b'/etc/motd'),
                          u'Testing')
Beispiel #2
0
 def test_with_password_file(self):
     password.os.path.exists = lambda x: True
     with patch.object(builtins, 'open', mock_open(read_data=b'Testing\n')) as m:
         self.assertEqual(password._read_password_file(b'/etc/motd'), u'Testing')
 def test_no_password_file(self):
     password.os.path.exists = lambda x: False
     self.assertEqual(password._read_password_file(b'/nonexistent'), None)
Beispiel #4
0
 def test_no_password_file(self):
     password.os.path.exists = lambda x: False
     self.assertEqual(password._read_password_file(b'/nonexistent'), None)