forked from faif/python-patterns
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_strategy.py
More file actions
29 lines (24 loc) · 874 Bytes
/
test_strategy.py
File metadata and controls
29 lines (24 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
"""
Tests for strategy.py
"""
import subprocess, sys
if sys.version_info < (2, 7):
import unittest2 as unittest
else:
import unittest
class StrategyTest(unittest.TestCase):
def test_print_output(self):
"""
Verifies the print output when strategy.py is executed.
The expected_output is equivalent to the output on the command
line when running 'python strategy.py'.
"""
output = subprocess.check_output(["python", "strategy.py"])
expected_output = 'Strategy Example 0\r\n\
Strategy Example 1 from execute 1\r\n\
Strategy Example 2 from execute 2\r\n'
# byte representation required due to EOF returned subprocess
expected_output_as_bytes = expected_output.encode(encoding='UTF-8')
self.assertEqual(output, expected_output_as_bytes)
if __name__ == "__main__":
unitest.main()