mirror of
https://github.com/datafolklabs/cement.git
synced 2026-02-06 09:37:26 +00:00
12 lines
297 B
Python
12 lines
297 B
Python
|
|
from cement.core import backend
|
|
|
|
|
|
def test_version():
|
|
# ensure that we bump things properly on version changes
|
|
assert backend.VERSION[0] == 3
|
|
assert backend.VERSION[1] == 0
|
|
assert backend.VERSION[2] == 6
|
|
assert backend.VERSION[3] == 'final'
|
|
assert backend.VERSION[4] == 0
|