(self)
| 142 | assert url == f"{url_prefix}images/localhost:5000/image/push" |
| 143 | |
| 144 | def test_url_invalid_resource(self): |
| 145 | with pytest.raises(ValueError): |
| 146 | self.client._url('/hello/{0}/world', ['sakuya', 'izayoi']) |
| 147 | |
| 148 | def test_url_no_resource(self): |
| 149 | url = self.client._url('/simple') |