Skip to content

Commit

Permalink
(maint) Template specs - restrict to Windows only
Browse files Browse the repository at this point in the history
A couple of specs need to be restricted to Windows only.
  • Loading branch information
ferventcoder committed May 30, 2016
1 parent 084af74 commit 50da177
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,7 @@ public override void BeforeEachSpec()
}

[Fact]
[WindowsOnly]
public void should_generate_all_files_and_directories()
{
because();
Expand All @@ -383,7 +384,8 @@ public void should_generate_all_files_and_directories()
MockLogger.MessagesFor(LogLevel.Info).Last().ShouldEqual(string.Format(@"Successfully generated Bob package specification files{0} at 'c:\chocolatey\Bob'", Environment.NewLine));
}

[Fact]
[Fact]
[WindowsOnly]
public void should_generate_all_files_and_directories_even_with_outputdirectory()
{
config.OutputDirectory = "c:\\packages";
Expand Down

0 comments on commit 50da177

Please sign in to comment.