Ejemplo n.º 1
0
 def test_other_capture(self):
     """Verify a program's output can be captured."""
     stdout = shell.call('echo', 'Hello, world!\n', _capture=True)
     assert "Hello, world!" == stdout
Ejemplo n.º 2
0
 def test_other_error_uncaught(self):
     """Verify program errors raise exceptions."""
     with pytest.raises(ShellError):
         shell.call('git', '--invalid-git-argument')
Ejemplo n.º 3
0
 def test_other_error_ignored(self):
     """Verify program errors can be ignored."""
     shell.call('git', '--invalid-git-argument', _ignore=True)
Ejemplo n.º 4
0
 def test_cd(self, mock_chdir):
     """Verify directories are changed correctly."""
     shell.call('cd', 'mock/dir')
     mock_chdir.assert_called_once_with('mock/dir')
Ejemplo n.º 5
0
 def test_other(self, mock_command):
     """Verify directories are changed correctly."""
     shell.call('mock_program')
     mock_command.assert_called_once_with('mock_program')
Ejemplo n.º 6
0
 def test_other_error_ignored(self):
     """Verify program errors can be ignored."""
     shell.call('git', '--invalid-git-argument', _ignore=True)
Ejemplo n.º 7
0
 def test_other_capture(self):
     """Verify a program's output can be captured."""
     stdout = shell.call('echo', 'Hello, world!\n', _capture=True)
     assert "Hello, world!" == stdout
Ejemplo n.º 8
0
 def test_other_error_uncaught(self):
     """Verify program errors raise exceptions."""
     with pytest.raises(ShellError):
         shell.call('git', '--invalid-git-argument')
Ejemplo n.º 9
0
 def test_other(self, mock_command):
     """Verify directories are changed correctly."""
     shell.call('mock_program')
     mock_command.assert_called_once_with('mock_program')
Ejemplo n.º 10
0
 def test_cd(self, mock_chdir):
     """Verify directories are changed correctly."""
     shell.call('cd', 'mock/dir')
     mock_chdir.assert_called_once_with('mock/dir')
Ejemplo n.º 11
0
 def test_other_error_uncaught(self):
     """Verify program errors can be left uncaught."""
     with pytest.raises(CallException):
         call('git', '--invalid-git-argument', catch=False)
Ejemplo n.º 12
0
 def test_other_error(self):
     """Verify program errors are handled."""
     with pytest.raises(SystemExit):
         call('git', '--invalid-git-argument')