Sfoglia il codice sorgente

Adding version test.

Dan Helfman 10 anni fa
parent
commit
820492f9a9
1 ha cambiato i file con 8 aggiunte e 0 eliminazioni
  1. 8 0
      atticmatic/tests/integration/test_version.py

+ 8 - 0
atticmatic/tests/integration/test_version.py

@@ -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