Ejemplo n.º 1
0
        public void get_the_list_of_nugets_to_update_with_the_nuget_flag()
        {
            var input = new UpdateInput{
                NugetFlag = "Nug1"
            };

            input.GetAllNugetNames(theSolution).ShouldHaveTheSameElementsAs("Nug1");
        }
Ejemplo n.º 2
0
        public void get_the_list_of_nugets_returns_the_specified_nuget_even_if_it_is_locked()
        {
            var input = new UpdateInput
            {
                NugetFlag = "Nug6"
            };

            input.GetAllNugetNames(theSolution).ShouldHaveTheSameElementsAs("Nug6");
        }