コード例 #1
0
ファイル: testCity.py プロジェクト: aman-thakral/astral
def testName():
    c = City()
    assert c.name == 'Greenwich'
    c.name = 'London'
    assert c.name == 'London'
    c.name = 'Köln'
    assert c.name == 'Köln'
コード例 #2
0
ファイル: testCity.py プロジェクト: aman-thakral/astral
def testTimezoneName():
    c = City()
    assert c.timezone == 'Europe/London'
    c.name = 'Asia/Riyadh'
    assert c.name == 'Asia/Riyadh'