Beispiel #1
0
    public void AllowArgumentSeparator_is_true()
    {
        var app = new CommandLineApplication {
            Name = "efbundle"
        };

        MigrationsBundle.Configure(app);

        Assert.True(app.AllowArgumentSeparator);
    }
Beispiel #2
0
    private static IEnumerable <CommandLineApplication> GetCommands()
    {
        var app = new CommandLineApplication {
            Name = "bundle"
        };

        MigrationsBundle.Configure(app);

        return(GetCommands(app));
    }
Beispiel #3
0
    public void HandleResponseFiles_is_true()
    {
        var app = new CommandLineApplication {
            Name = "efbundle"
        };

        MigrationsBundle.Configure(app);

        Assert.True(app.HandleResponseFiles);
    }