Exemple #1
0
def test_parse_istring_is_case_insensitive():
    eq_("bar", parser.parse_istring("foobar", "Foo"))
Exemple #2
0
def test_parse_istring_passes_if_prefix_is_found():
    eq_("bar", parser.parse_istring("foobar", "foo"))
Exemple #3
0
def test_parse_istring_raise_if_string_does_not_starts_with():
    parser.parse_istring("foobar", "x")
Exemple #4
0
def test_parse_istring_is_case_insensitive():
    eq_("bar", parser.parse_istring("foobar", "Foo"))
Exemple #5
0
def test_parse_istring_passes_if_prefix_is_found():
    eq_("bar", parser.parse_istring("foobar", "foo"))
Exemple #6
0
def test_parse_istring_raise_if_string_does_not_starts_with():
    parser.parse_istring("foobar", "x")