Browse Source

Adding version test.

Dan Helfman 10 năm trước cách đây
mục cha
commit
820492f9a9
1 tập tin đã thay đổi với 8 bổ sung0 xóa
  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