def test_isoDate_withTuple(self): self.assertEqual( "2015-10-30", isoDate((2015,10,30)), )
def test_isoDate_withSlashDate(self): self.assertEqual( "2015-10-30", isoDate('2015/10/30'), )
def test_isoDate_withDate(self): self.assertEqual( "2015-10-30", isoDate(datetime.date(2015,10,30)), )
def test_isoDate_withIso(self): self.assertEqual( "2015-10-30", isoDate('2015-10-30'), )