Merge pull request #262 from kngwyu/pganssle-tzinfo_subclass_introspection

Skip failing test of #239
This commit is contained in:
Yuji Kanagawa 2018-11-08 18:34:46 +09:00 committed by GitHub
commit ecae8544f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -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()"