-
Notifications
You must be signed in to change notification settings - Fork 525
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:fsprojects/Paket
- Loading branch information
Showing
13 changed files
with
83 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
module Paket.IntegrationTests.AddSpecs | ||
|
||
open Fake | ||
open System | ||
open NUnit.Framework | ||
open FsUnit | ||
open System | ||
open System.IO | ||
open System.Diagnostics | ||
open Paket | ||
open Paket.Domain | ||
|
||
[<Test>] | ||
let ``#310 paket add nuget should not resolve inconsistent dependency graph``() = | ||
try | ||
paket "add nuget Castle.Windsor version 3.3.0" "i000310-add-should-not-create-invalid-resolution" |> ignore | ||
failwith "resolver error expected" | ||
with | ||
| exn when exn.Message.Contains("There was a version conflict during package resolution") -> () |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+2.94 KB
integrationtests/Paket.IntegrationTests/Paket.IntegrationTests.v2.ncrunchproject
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
integrationtests/scenarios/i000220-use-exactly-this-constraint/before/paket.dependencies
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
source http://nuget.org/api/v2 | ||
|
||
nuget FAKE | ||
nuget FSharp.Compiler.Service | ||
nuget CommandLineParser 1.9.71 | ||
nuget Microsoft.AspNet.Razor == 2.0.30506.0 | ||
nuget RazorEngine.N 3.5.0 | ||
nuget NUnit | ||
nuget NUnit.Runners | ||
nuget NuGet.CommandLine |
3 changes: 3 additions & 0 deletions
3
integrationtests/scenarios/i000263-semver-prereleases/before/paket.dependencies
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
source http://nuget.org/api/v2 | ||
|
||
nuget Ninject == 3.2.3-unstable-001 |
3 changes: 3 additions & 0 deletions
3
...grationtests/scenarios/i000299-restore-package-that-ends-in-lib/before/paket.dependencies
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
source http://nuget.org/api/v2 | ||
|
||
nuget FunScript.TypeScript.Binding.lib |
3 changes: 3 additions & 0 deletions
3
...ests/scenarios/i000310-add-should-not-create-invalid-resolution/before/paket.dependencies
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
source http://nuget.org/api/v2 | ||
|
||
nuget Castle.Core >= 3.2 < 3.3 |
4 changes: 4 additions & 0 deletions
4
...grationtests/scenarios/i000310-add-should-not-create-invalid-resolution/before/paket.lock
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
NUGET | ||
remote: http://nuget.org/api/v2 | ||
specs: | ||
Castle.Core (3.2.2) |
3 changes: 3 additions & 0 deletions
3
integrationtests/scenarios/i000359-packagename-contains-nuget/before/paket.dependencies
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
source http://nuget.org/api/v2 | ||
|
||
nuget nuget.CommandLine |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters