Beispiel #1
0
        public void GetXRobotsTagConfiguration_NoOwinContext_ReturnsSystemWebConfig()
        {
            var config = new XRobotsTagConfiguration();

            _systemWebContext.XRobotsTag = config;

            var result = _contextHelper.GetXRobotsTagConfiguration(_mockContext);

            Assert.Same(config, result);
        }
Beispiel #2
0
        public void GetXRobotsTagConfiguration_ReturnsContextConfig()
        {
            var config = new XRobotsTagConfiguration();

            _nwContext.XRobotsTag = config;

            var result = _contextHelper.GetXRobotsTagConfiguration(_mockContext);

            Assert.Same(config, result);
        }