def test_findAll_2(): assert_equals(regalia.findAll("This (is (a)) test", "("), [5, 9])
def test_findAll_4(): assert_equals(regalia.findAll("This (is \(a\)) test", "(", filt="\("), [5])
def test_findAll_1(): assert_equals(regalia.findAll("This (is a) test", "("), [5])
def test_findAll_3(): assert_equals(regalia.findAll("This is a test", "("), [])