예제 #1
0
파일: test.py 프로젝트: Jdaco/regalia
def test_findAll_2():
    assert_equals(regalia.findAll("This (is (a)) test", "("), [5, 9])
예제 #2
0
파일: test.py 프로젝트: Jdaco/regalia
def test_findAll_4():
    assert_equals(regalia.findAll("This (is \(a\)) test", "(", filt="\("), [5])
예제 #3
0
파일: test.py 프로젝트: Jdaco/regalia
def test_findAll_1():
    assert_equals(regalia.findAll("This (is a) test", "("), [5])
예제 #4
0
파일: test.py 프로젝트: Jdaco/regalia
def test_findAll_3():
    assert_equals(regalia.findAll("This is a test", "("), [])