Browse Source

test script entrypoint

Fabian Peter Hammerle 5 years ago
parent
commit
1f263ea4d0
1 changed files with 10 additions and 0 deletions
  1. 10 0
      tests/test_bibtex_entry_from_pmid.py

+ 10 - 0
tests/test_bibtex_entry_from_pmid.py

@@ -1,3 +1,4 @@
+import subprocess
 import unittest.mock
 
 from pubmed_bibtex import bibtex_entry_from_pmid, _main
@@ -24,3 +25,12 @@ def test_main(capsys):
     out, err = capsys.readouterr()
     assert not err
     assert out == TEST_BIBTEX_ENTRY
+
+
+def test_script():
+    proc_info = subprocess.run(['pubmed-bibtex', TEST_PMID],
+                               check=True,
+                               stdout=subprocess.PIPE,
+                               stderr=subprocess.PIPE)
+    assert not proc_info.stderr
+    assert proc_info.stdout == TEST_BIBTEX_ENTRY.encode()