def test_status(self): ''' Test to display the status of the current directory, files, or directories in the Subversion repository ''' mock = MagicMock(return_value={'retcode': 0, 'stdout': True}) with patch.dict(svn.__salt__, {'cmd.run_all': mock}): self.assertTrue(svn.status('cwd'))
def test_status(self): """ Test to display the status of the current directory, files, or directories in the Subversion repository """ mock = MagicMock(return_value={"retcode": 0, "stdout": True}) with patch.dict(svn.__salt__, {"cmd.run_all": mock}): self.assertTrue(svn.status("cwd"))