Skip to content

Commit

Permalink
Remove test debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
rneatherway committed Aug 14, 2015
1 parent 69cc868 commit 27cef0d
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions FsAutoComplete.Tests/Tests.fs
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,14 @@ let ``normalCracking`` () =

[<Test>]
let ``should find FSharp.Core`` () =
match Environment.fsharpCoreOpt with
| None -> Assert.Fail()
| Some fileName -> printfn "FSharp.Core found at '%s'" fileName; Assert.Pass()
Assert.That(Option.isSome Environment.fsharpCoreOpt, "FSharp.Core.dll resolution failed")

[<Test>]
let ``should find fsc on Windows`` () =
if not Utils.runningOnMono then
printfn "fsc.exe found at '%s'" Environment.fsc
Assert.That(Environment.fsc.Contains("Microsoft SDKs"), "fsc.exe resolution failed")

[<Test>]
let ``should find msbuild on Windows`` () =
if not Utils.runningOnMono then
printfn "msbuild.exe found at '%s'" Environment.msbuild
Assert.That(Environment.msbuild.Length > "MSBuild.exe".Length, "MSBuild.exe resolution failed")

0 comments on commit 27cef0d

Please sign in to comment.