I want to be able to do something like this:
@pytest.mark.pointer(target=EnvConfig.get)
@pytest.mark.pointer(target=EnvConfig.__getitem__)
def test_get(self):
Instead of writing the same test twice.
In the example above the EnvConfig.__getitem__ would get picked up but not the other one.
I want to be able to do something like this:
Instead of writing the same test twice.
In the example above the
EnvConfig.__getitem__would get picked up but not the other one.