mirror of https://github.com/tqdm/tqdm.git
Add small test for version variable
This commit is contained in:
parent
7ed6996eb0
commit
434258f4b2
|
@ -0,0 +1,13 @@
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
import csv
|
||||||
|
|
||||||
|
try:
|
||||||
|
from StringIO import StringIO
|
||||||
|
except:
|
||||||
|
from io import StringIO
|
||||||
|
|
||||||
|
|
||||||
|
def test_version():
|
||||||
|
from tqdm import __version__
|
||||||
|
assert len(__version__.split('.')) == 4
|
Loading…
Reference in New Issue