public void should_only_apply_behavior_once()
        {
            var hostRegistry    = new FubuRegistry();
            var packageRegistry = new FubuPackageRegistry();

            packageRegistry.Actions.IncludeType <Controller1>();
            hostRegistry.Import(packageRegistry, string.Empty);
            theGraph = BehaviorGraph.BuildFrom(hostRegistry);

            var chain = chainFor(x => x.BasicContinuation(null))
                        .Output.Writers.OfType <Writer>().ShouldHaveCount(1);
        }
        public void should_only_apply_behavior_once()
        {
            var hostRegistry    = new FubuRegistry();
            var packageRegistry = new FubuPackageRegistry();

            packageRegistry.Actions.IncludeType <Controller1>();
            hostRegistry.Import(packageRegistry, string.Empty);
            theGraph = hostRegistry.BuildGraph();

            chainFor(x => x.BasicContinuation(null))
            .Where(x => x is AjaxContinuationNode)
            .ShouldHaveCount(1);
        }