mirror of
https://github.com/qurator-spk/eynollah.git
synced 2025-07-05 00:49:57 +02:00
more code formatting
This commit is contained in:
parent
713b90e084
commit
1a95bca22d
24 changed files with 1408 additions and 1319 deletions
|
@ -1,6 +1,7 @@
|
|||
from tests.base import main
|
||||
from eynollah.eynollah.utils.counter import EynollahIdCounter
|
||||
|
||||
|
||||
def test_counter_string():
|
||||
c = EynollahIdCounter()
|
||||
assert c.next_region_id == 'region_0001'
|
||||
|
@ -11,6 +12,7 @@ def test_counter_string():
|
|||
assert c.region_id(999) == 'region_0999'
|
||||
assert c.line_id(999, 888) == 'region_0999_line_0888'
|
||||
|
||||
|
||||
def test_counter_init():
|
||||
c = EynollahIdCounter(region_idx=2)
|
||||
assert c.get('region') == 2
|
||||
|
@ -19,6 +21,7 @@ def test_counter_init():
|
|||
c.reset()
|
||||
assert c.get('region') == 2
|
||||
|
||||
|
||||
def test_counter_methods():
|
||||
c = EynollahIdCounter()
|
||||
assert c.get('region') == 0
|
||||
|
@ -29,5 +32,6 @@ def test_counter_methods():
|
|||
c.inc('region', -9)
|
||||
assert c.get('region') == 1
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main(__file__)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue