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