Lines Matching refs:mock_isdir
27 def testFailedToCreateBranchForInvalidDirectoryPath(self, mock_isdir): argument
39 mock_isdir.assert_called_once()
43 def testSuccessfullyCreatedBranch(self, mock_command_output, mock_isdir): argument
49 mock_isdir.assert_called_once_with(path_to_repo)
54 def testFailedToDeleteBranchForInvalidDirectoryPath(self, mock_isdir): argument
66 mock_isdir.assert_called_once()
70 def testSuccessfullyDeletedBranch(self, mock_command_output, mock_isdir): argument
76 mock_isdir.assert_called_once_with(path_to_repo)
81 def testFailedToUploadChangesForInvalidDirectoryPath(self, mock_isdir): argument
93 mock_isdir.assert_called_once()
99 mock_commands, mock_isdir): argument
117 mock_isdir.assert_called_once_with(path_to_repo)