Ejemplo n.º 1
0
        public void requests_for_a_specific_nuget()
        {
            theInput.NugetFlag = "FubuCore";

            var request = theInput.Requests(theSolution).Single();

            request.Dependency.ShouldEqual(new Dependency("FubuCore"));
            request.Operation.ShouldEqual(OperationType.Update);
            request.Batched.ShouldBeFalse();
        }