Skip to main content

Questions tagged [plates]

0 votes
1 answer
86 views

test_plates: from plates import is_valid def test_correct(): assert (is_valid("ASD123")) == True assert (is_valid("ASD")) == True assert (is_valid("AS2")) == ...
Athi's user avatar
  • 33
0 votes
2 answers
80 views

After using check50 on my test_plates.py file, I get the following error and it doesn't further check anything ( "can't check until a frown turns upside down"): Cause expected exit code 0, ...
theparanormal22's user avatar
1 vote
1 answer
367 views

What is the problem with my code for testing plates.py? this is the code : def main(): plate = input("Plate: ") if iss_valid(plate): print("Valid") else: ...
Alaa Hamoush's user avatar