コード例 #1
0
def test_has_spaces_without_spaces():
    assert admin.has_spaces('John') == 'John'
コード例 #2
0
def test_has_spaces_without_spaces():
    assert admin.has_spaces("John") == "John"
コード例 #3
0
def test_has_spaces_with_spaces():
    with pytest.raises(ValidationError):
        admin.has_spaces(' J o h n ')
コード例 #4
0
def test_has_spaces_with_spaces():
    with pytest.raises(ValidationError):
        admin.has_spaces(" J o h n ")