class documentation

Test mixin for the VCS commands used by the release scripts.

Method setUp Undocumented
Method test_ensureIsWorkingDirectoryWithNonWorkingDirectory Calling the ensureIsWorkingDirectory VCS command's method on an invalid working directory raises a NotWorkingDirectory exception.
Method test_ensureIsWorkingDirectoryWithWorkingDirectory Calling the ensureIsWorkingDirectory VCS command's method on a valid working directory doesn't produce any error.
Method test_export The exportTo VCS command's method export the content of the repository as identical in a specified directory.
Method test_remove Calling the remove VCS command's method remove the specified path from the directory.
Method test_statusClean Calling the isStatusClean VCS command's method on a repository with no pending modifications returns True.
Method test_statusNotClean Calling the isStatusClean VCS command's method on a repository with no pending modifications returns False.
Instance Variable tmpDir Undocumented

Inherited from StructureAssertingMixin:

Method assertStructure Assert that a directory is equivalent to one described by a dict.
Method createStructure No summary
def setUp(self): (source)

Undocumented

def test_ensureIsWorkingDirectoryWithNonWorkingDirectory(self): (source)

Calling the ensureIsWorkingDirectory VCS command's method on an invalid working directory raises a NotWorkingDirectory exception.

def test_ensureIsWorkingDirectoryWithWorkingDirectory(self): (source)

Calling the ensureIsWorkingDirectory VCS command's method on a valid working directory doesn't produce any error.

def test_export(self): (source)

The exportTo VCS command's method export the content of the repository as identical in a specified directory.

def test_remove(self): (source)

Calling the remove VCS command's method remove the specified path from the directory.

def test_statusClean(self): (source)

Calling the isStatusClean VCS command's method on a repository with no pending modifications returns True.

def test_statusNotClean(self): (source)

Calling the isStatusClean VCS command's method on a repository with no pending modifications returns False.

Undocumented