public void should_run_inner_bag_convention()
        {
            _runner.AddFacility(new TestViewFacility());

            var convention = new TestViewBagConvention();
            _runner.Apply(convention);

            _runner
                .Configure(new FubuRegistry().BuildGraph());

            convention
                .Executed
                .ShouldBeTrue();
        }
Exemplo n.º 2
0
        public void should_run_inner_bag_convention()
        {
            _runner.AddFacility(new TestViewFacility());

            var convention = new TestViewBagConvention();

            _runner.Apply(convention);

            _runner
            .Configure(new FubuRegistry().BuildGraph());

            convention
            .Executed
            .ShouldBeTrue();
        }