Skip to content

Commit 4e7900b

Browse files
committed
Enabled more unit tests
1 parent 0d1acd1 commit 4e7900b

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

tests/test_datetime.py

-5
Original file line numberDiff line numberDiff line change
@@ -1095,8 +1095,6 @@ def test_fromisoformat_timezone(self):
10951095
dt_rt = self.theclass.fromisoformat(dtstr)
10961096
assert dt == dt_rt, dt_rt
10971097

1098-
# TODO
1099-
@unittest.skip("fromisoformat not implemented")
11001098
def test_fromisoformat_separators(self):
11011099
separators = [
11021100
" ",
@@ -1118,8 +1116,6 @@ def test_fromisoformat_separators(self):
11181116
dt_rt = self.theclass.fromisoformat(dtstr)
11191117
self.assertEqual(dt, dt_rt)
11201118

1121-
# TODO
1122-
@unittest.skip("fromisoformat not implemented")
11231119
def test_fromisoformat_ambiguous(self):
11241120
# Test strings like 2018-01-31+12:15 (where +12:15 is not a time zone)
11251121
separators = ["+", "-"]
@@ -1215,7 +1211,6 @@ def test_fromisoformat_utc(self):
12151211

12161212
self.assertIs(dt.tzinfo, timezone.utc)
12171213

1218-
@unittest.skip("fromisoformat not implemented")
12191214
def test_fromisoformat_subclass(self):
12201215
class DateTimeSubclass(self.theclass):
12211216
pass

0 commit comments

Comments
 (0)