# coding=UTF-8 from .models import Club, Place, Country import pytest # class GymnastTestCase(): def test_country_tostring(): c = Country(namefr="Belgique", iso2="56") assert str(c) == "Belgique (56)" def test_place_tostring(): p = Place(name="FATC", city="Lillois") assert str(p) == "FATC (Lillois)" def test_club_tostring(): p = Place(name="FATC", city="Lillois") club = Club(place=p, name="FATC2") assert str(club) == "FATC2 (à Lillois)"