We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b28ca62 commit 760af34Copy full SHA for 760af34
cowsay/test.py
@@ -620,6 +620,12 @@ def test_cow(self):
620
solution = delete_empty_lines(COW_SOLUTION)
621
assert output == solution
622
623
+ def test_daemon(self):
624
+ output = capture_output(daemon, (LOREM))
625
+ output = delete_empty_lines(output)
626
+ solution = delete_empty_lines(DAEMON_SOLUTION)
627
+ assert output == solution
628
+
629
def test_dragon(self):
630
output = capture_output(dragon, (LOREM))
631
output = delete_empty_lines(output)
0 commit comments