1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| import pytest
|
| import pandas as pd
|
|
| class TestResolution:
| @pytest.mark.parametrize(
| "freq,expected",
| [
| ("A", "year"),
| ("Q", "quarter"),
| ("M", "month"),
| ("D", "day"),
| ("H", "hour"),
| ("T", "minute"),
| ("S", "second"),
| ("L", "millisecond"),
| ("U", "microsecond"),
| ],
| )
| def test_resolution(self, freq, expected):
| idx = pd.period_range(start="2013-04-01", periods=30, freq=freq)
| assert idx.resolution == expected
|
|