CoolFace
Apppublic

Steph680/ormuz

sourceHugging Faceupdated 2d agoView on Hugging Face
0likes
test_flags.py19 linesDownload Raw Back to tests
1"""Tests du pavillon déduit du MMSI (préfixe MID)."""2 3from app.flags import flag_from_mmsi4 5 6def test_prefixes_courants():7    assert flag_from_mmsi(422123456) == "IR"   # Iran8    assert flag_from_mmsi(352987654) == "PA"   # Panama9    assert flag_from_mmsi(311000123) == "BS"   # Bahamas10    assert flag_from_mmsi(636555000) == "LR"   # Liberia11    assert flag_from_mmsi(538001234) == "MH"   # Îles Marshall12    assert flag_from_mmsi("470112233") == "AE"  # accepte les chaînes13 14 15def test_prefixe_inconnu_ou_invalide():16    assert flag_from_mmsi(999000000) == ""17    assert flag_from_mmsi(None) == ""18    assert flag_from_mmsi("abc") == ""19