pytest: use subtests for various layout options, add coverage

This commit is contained in:
Robert Sachunsky 2025-04-04 22:22:50 +02:00
parent 91a340f619
commit b03116f4a6
8 changed files with 48 additions and 82 deletions

View file

@ -1,4 +1,3 @@
from tests.base import main
from eynollah.utils.counter import EynollahIdCounter
def test_counter_string():
@ -29,5 +28,3 @@ def test_counter_methods():
c.inc('region', -9)
assert c.get('region') == 1
if __name__ == '__main__':
main(__file__)