text fixes, remove file existence validations from parse

This commit is contained in:
jonsequitur 2017-03-16 09:49:07 -07:00
parent 9318e8f10d
commit 9c2e8f0037
4 changed files with 4 additions and 40 deletions

View file

@ -112,8 +112,8 @@ Options:
.WithProject("one two three")
.Execute("proj.csproj");
cmd.ExitCode.Should().NotBe(0);
cmd.StdErr.Should().Be("Unrecognized command or argument 'two'");
cmd.StdOut.Should().Be("Specify --help for a list of available options and commands.");
cmd.StdErr.Should().BeVisuallyEquivalentTo(
"Unrecognized command or argument 'two'\r\nUnrecognized command or argument 'three'");
}
[Theory]