Esempio n. 1
0
 public void Constructor_CalculatesIndentCorrectly(string testString, string expectedIndent)
 {
     var line = new HamlLineLexer().ParseHamlLine(testString, 0);
     Assert.AreEqual(expectedIndent, line.First().Indent);
 }