Skip to content

Commit

Permalink
more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
i-e-b committed Feb 7, 2013
1 parent 66fdcd9 commit ecf9b23
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
Binary file modified lib/LessStupidPath.dll
Binary file not shown.
Binary file removed lib/LessStupidPath.pdb
Binary file not shown.
8 changes: 6 additions & 2 deletions src/Unit.Tests/Builder_Pulling.cs
Expand Up @@ -54,13 +54,17 @@ public void builder()
[Test]
public void resets_all_lib_folders()
{
_git.Received().ResetLib(new FilePath("group1/proj1"));
_git.Received(1).ResetLib(new FilePath("group1/proj1"));
_git.Received(1).ResetLib(new FilePath("group1/proj2"));
_git.Received(1).ResetLib(new FilePath("group2/proj3"));
}

[Test]
public void pulls_changes ()
{
_git.Received(3).PullCurrentBranch(new FilePath("group1/proj1"));
_git.Received(1).PullCurrentBranch(new FilePath("group1/proj1"));
_git.Received(1).PullCurrentBranch(new FilePath("group1/proj2"));
_git.Received(1).PullCurrentBranch(new FilePath("group2/proj3"));
}

[Test]
Expand Down

0 comments on commit ecf9b23

Please sign in to comment.