public void testIterator6c() throws Exception {
String str = " #comment what's happening\r\n" +
" #comment what's happening2\r\n" +
" pass\r\n";
Document d = new Document(str);
TabNannyDocIterator it = new TabNannyDocIterator(d, true, false);
assertEquals(" ", it.next().o1);
assertEquals(" ", it.next().o1);
assertEquals(" ", it.next().o1);
assertTrue(!it.hasNext());
}