public void Init()
 {
     codeBuilder = new PythonCodeBuilder();
     codeBuilder.IndentString = "\t";
 }
 public void IndentPassedToConstructor()
 {
     codeBuilder = new PythonCodeBuilder(2);
     codeBuilder.AppendIndented("abc");
     Assert.AreEqual("\t\tabc", codeBuilder.ToString());
 }