示例#1
0
 public void Should_prefix_directive_outside_codeBlock()
 {
     directiveNodeMock.SetupGet(n => n.Directive).Returns("inherits");
     renderer.RenderNode(directiveNodeMock.Object, false).ShouldEqual("@inherits");
 }
示例#2
0
 public void Should_prefix_directive()
 {
     directiveNodeMock.SetupGet(n => n.Directive).Returns("inherits");
     renderer.RenderNode(directiveNodeMock.Object).ShouldEqual("@inherits");
 }