Adding version test.

This commit is contained in:
Dan Helfman 2015-07-30 08:13:27 -07:00
parent f803198f14
commit 820492f9a9
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
import subprocess
def test_setup_version_matches_news_version():
setup_version = subprocess.check_output(('python', 'setup.py', '--version')).decode('ascii')
news_version = open('NEWS').readline()
assert setup_version == news_version