Currently we often use the following abstract method in many of the test mixins:
@abstractmethod
def _get_url(self) -> str:
return NotImplemented
Unfortunately this makes it difficult to pass args (including access to other fixtures) to the _get_url method.
I propose making this a fixture instead. I'll create a PR to demostrate.
Currently we often use the following abstract method in many of the test mixins:
Unfortunately this makes it difficult to pass args (including access to other fixtures) to the _get_url method.
I propose making this a fixture instead. I'll create a PR to demostrate.