From 09021aaefdb379d466d6a61146047066686b4d72 Mon Sep 17 00:00:00 2001 From: Adar Nimrod Date: Mon, 4 Jul 2016 18:51:28 +0300 Subject: [PATCH] - A little more testing. --- tests/test_python.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_python.py b/tests/test_python.py index 26e18dd..4032aa0 100644 --- a/tests/test_python.py +++ b/tests/test_python.py @@ -1,2 +1,4 @@ def test_python(Command): - assert Command('python --version').rc == 0 + python = Command('python --version') + assert python.rc == 0 + assert '2.7' in python.stdout -- GitLab