public void convert_to_ripple_dependencies_config()
        {
            theFilename = "TestProject.txt";
            var stream = GetType()
                         .Assembly
                         .GetManifestResourceStream(GetType(), "ProjectWithPackagesConfig.txt");

            new FileSystem().WriteStreamToFile(theFilename, stream);

            theProj = new ProjFile(theFilename, null);
            theProj.UsesPackagesConfig().ShouldBeTrue();

            theProj.ConvertToRippleDependenciesConfig();
            theProj.Write();

            theProj = null;
            theProj = new ProjFile(theFilename, null);

            theProj.UsesPackagesConfig().ShouldBeFalse();
        }
        public void convert_to_ripple_dependencies_config()
        {
            theFilename = "TestProject.txt";
            var stream = GetType()
                .Assembly
                .GetManifestResourceStream(GetType(), "ProjectWithPackagesConfig.txt");

            new FileSystem().WriteStreamToFile(theFilename, stream);

            theProj = new ProjFile(theFilename, null);
            theProj.UsesPackagesConfig().ShouldBeTrue();

            theProj.ConvertToRippleDependenciesConfig();
            theProj.Write();

            theProj = null;
            theProj = new ProjFile(theFilename, null);

            theProj.UsesPackagesConfig().ShouldBeFalse();
        }