Ejemplo n.º 1
0
def test_input_is_nine_characters():
    assert not is_valid('134456729')
Ejemplo n.º 2
0
def test_invalid_characters_are_not_ignored():
    assert not is_valid('3132P34035')
Ejemplo n.º 3
0
def test_invalid_check_digit_X_used_for_0():
    assert not is_valid('3-598-21515-X')
Ejemplo n.º 4
0
def test_valid_empty_isbn():
    assert not is_valid('')
Ejemplo n.º 5
0
def test_invalid_isbn_without_check_digit():
    assert not is_valid('3-598-21507')
Ejemplo n.º 6
0
def test_valid_isbn_number():
    assert is_valid('3-598-21508-8')
Ejemplo n.º 7
0
def test_invalid_too_long_isbn_with_no_dashes():
    assert not is_valid('3598215078X')
Ejemplo n.º 8
0
def test_invalid_check_digit_other_than_X():
    assert not is_valid('3-598-21507-A')
Ejemplo n.º 9
0
def test_valid_isbn_without_separating_dashes_with_X_check_digit():
    assert is_valid('359821507X')
Ejemplo n.º 10
0
def test_invalid_isbn_without_check_digit_and_dashes():
    assert not is_valid('359821507')
Ejemplo n.º 11
0
def test_valid_isbn_without_separating_dashes():
    assert is_valid('3598215088')
Ejemplo n.º 12
0
def test_invalid_X_other_than_check_digit():
    assert not is_valid('3-598-2X507-9')
Ejemplo n.º 13
0
def test_invalid_character_in_isbn():
    assert not is_valid('3-598-P1581-X')
Ejemplo n.º 14
0
def test_input_is_too_long_but_contains_a_valid_isbn():
    assert not is_valid('98245726788')
Ejemplo n.º 15
0
def test_invalid_too_short_isbn():
    assert not is_valid('00')
Ejemplo n.º 16
0
def test_invalid_check_digit():
    assert not is_valid('3-598-21508-9')
Ejemplo n.º 17
0
def test_valid_with_X_check_digit():
    assert is_valid('3-598-21507-X')