public void GetXRobotsTagConfiguration_NoOwinContext_ReturnsSystemWebConfig() { var config = new XRobotsTagConfiguration(); _systemWebContext.XRobotsTag = config; var result = _contextHelper.GetXRobotsTagConfiguration(_mockContext); Assert.Same(config, result); }
public void GetXRobotsTagConfiguration_ReturnsContextConfig() { var config = new XRobotsTagConfiguration(); _nwContext.XRobotsTag = config; var result = _contextHelper.GetXRobotsTagConfiguration(_mockContext); Assert.Same(config, result); }