This commit is contained in:
Bert Blommers 2020-11-11 15:55:37 +00:00
commit 273ca63d59
92 changed files with 515 additions and 1200 deletions

View file

@ -93,7 +93,8 @@ def test_parse_region_from_url():
parse_region_from_url(url).should.equal(expected)
@pytest.mark.parametrize("key,expected",
@pytest.mark.parametrize(
"key,expected",
[
("foo/bar/baz", "foo/bar/baz"),
("foo", "foo"),
@ -101,13 +102,14 @@ def test_parse_region_from_url():
"foo/run_dt%3D2019-01-01%252012%253A30%253A00",
"foo/run_dt=2019-01-01%2012%3A30%3A00",
),
]
],
)
def test_clean_key_name(key, expected):
clean_key_name(key).should.equal(expected)
@pytest.mark.parametrize("key,expected",
@pytest.mark.parametrize(
"key,expected",
[
("foo/bar/baz", "foo/bar/baz"),
("foo", "foo"),
@ -115,7 +117,7 @@ def test_clean_key_name(key, expected):
"foo/run_dt%3D2019-01-01%252012%253A30%253A00",
"foo/run_dt%253D2019-01-01%25252012%25253A30%25253A00",
),
]
],
)
def test_undo_clean_key_name(key, expected):
undo_clean_key_name(key).should.equal(expected)