(self)
| 148 | naive fashion. |
| 149 | """ |
| 150 | def test_string(self): |
| 151 | self.assert_deprecated(np.datetime64, args=('2000-01-01T00+01',)) |
| 152 | self.assert_deprecated(np.datetime64, args=('2000-01-01T00Z',)) |
| 153 | |
| 154 | @pytest.mark.skipif(not _has_pytz, |
| 155 | reason="The pytz module is not available.") |
nothing calls this directly
no test coverage detected