コード例 #1
0
 public void ParsesNoMarkup()
 {
     _section = new StyleguideSection(CommentText.Replace("Markup", "______"), "example.css");
     _section.Markup.Is("");
 }
コード例 #2
0
 public void ParsesWordPhrasesAsStyleguideReferences()
 {
     _section = new StyleguideSection(CommentText.Replace("2.1.1", "Buttons - Truly Lime"), "example.css");
     _section.Section.Is("Buttons - Truly Lime");
 }
コード例 #3
0
 public void Setup()
 {
     _section = new StyleguideSection(CommentText, "example.css");
 }