mirror of
https://github.com/ihabunek/toot.git
synced 2024-10-27 05:10:20 -04:00
9 lines
241 B
Python
9 lines
241 B
Python
import toot
|
|
from pkg_resources import get_distribution
|
|
|
|
|
|
def test_version():
|
|
"""Version specified in __version__ should be the same as the one
|
|
specified in setup.py."""
|
|
assert toot.__version__ == get_distribution('toot').version
|