Skip to content

Commit

Permalink
Merge pull request #262 from kngwyu/pganssle-tzinfo_subclass_introspe…
Browse files Browse the repository at this point in the history
…ction

Skip failing test of #239
  • Loading branch information
kngwyu authored Nov 8, 2018
2 parents be6d7b2 + 9ae2f1f commit ecae854
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions examples/rustapi_module/tests/test_datetime.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,3 +271,11 @@ def test_tz_class():
assert dt.tzname() == "+01:00"
assert dt.utcoffset() == pdt.timedelta(hours=1)
assert dt.dst() is None

@pytest.mark.skip(reason='to debug with the latest master')
def test_tz_class_introspection():
tzi = rdt.TzClass()

assert tzi.__class__ == rdt.TzClass
assert repr(tzi) == "TzClass()"

0 comments on commit ecae854

Please sign in to comment.