strategy.customizeDocumentCommand(doc, docCmd);
assertEquals(" ", docCmd.text); // a single tab should go to the correct indent
}
public void testIndentingWithTab2() {
strategy.setIndentPrefs(new TestIndentPrefs(true, 4));
String str = "" +
"class C:\n" +
" pass\n" +
"";
final Document doc = new Document(str);