Skip to content

Commit

Permalink
shorten scenario names
Browse files Browse the repository at this point in the history
  • Loading branch information
0x53A committed Aug 20, 2017
1 parent 2fbc83b commit 760d9d3
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,15 +108,15 @@ let testPaketDependenciesFileInSolution scenario expectedFiles =

[<Test>]
let ``#2161 should put paket.dependencies inside the .paket folder when it's already present in the sln file``() =
testPaketDependenciesFileInSolution "i002161-convert-existing-paket-folder" ["paket.dependencies"]
testPaketDependenciesFileInSolution "i002161" ["paket.dependencies"]

[<Test>]
let ``#2512 should put paket.dependencies inside the .paket folder when it's absent in the sln file``() =
testPaketDependenciesFileInSolution "i002512-convert-absent-paket-folder" ["paket.dependencies"]
testPaketDependenciesFileInSolution "i002512-1" ["paket.dependencies"]

[<Test>]
let ``#2512 should put paket.dependencies inside the .paket folder that already has files in it``() =
testPaketDependenciesFileInSolution "i002512-convert-paket-folder-with-files" ["paket.dependencies"; "SomeFile"]
testPaketDependenciesFileInSolution "i002512-2" ["paket.dependencies"; "SomeFile"]

[<Test>]
let ``#2528 sdk-2: convert-from-nuget should add explicit FSharp.Core``() =
Expand Down Expand Up @@ -147,7 +147,6 @@ let ``#2528 sdk-2: install should not warn without FSharp.Core for csharp``() =
messages
|> shouldNotContainText "does not reference FSharp.Core"


[<Test>]
let ``#2528 sdk-2: install should not warn with FSharp.Core``() =
let scenario = "i002528-4"
Expand All @@ -167,4 +166,4 @@ let ``#2528 sdk-2: install should warn without FSharp.Core: in dep but not in re
let scenario = "i002528-6"
let messages = paket "install" scenario
messages
|> shouldContainText "does not reference FSharp.Core"
|> shouldContainText "does not reference FSharp.Core"

0 comments on commit 760d9d3

Please sign in to comment.