Ejemplo n.º 1
0
def test_is_not_hexcolour_length():
    assert is_hexcolour('#FFFFF') == False
Ejemplo n.º 2
0
def test_is_not_hexcolour_hash():
    assert is_hexcolour('FFFFFF') == False
Ejemplo n.º 3
0
def test_is_hexcolour_uppercase():
    assert is_hexcolour('#FFFFFF')
Ejemplo n.º 4
0
def test_is_not_hexcolour_at_all():
    assert is_hexcolour('maap') == False
Ejemplo n.º 5
0
def test_is_hexcolour_lowercase():
    assert is_hexcolour('#ffffff')