| Total Complexity | 1 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | """ |
||
| 2 | Tests for the Marvin Stream action |
||
| 3 | """ |
||
| 4 | |||
| 5 | from test_action import ActionTest |
||
| 6 | from irc2phpbb import marvin_actions |
||
| 7 | |||
| 8 | class StreamTest(ActionTest): |
||
| 9 | """Tests for the Marvin Stream action""" |
||
| 10 | def testStream(self): |
||
| 11 | """Test that marvin can provide the link to the stream""" |
||
| 12 | self.assertStringsOutput(marvin_actions.marvinStream, "ska mos streama?", "stream", "info") |
||
| 13 | self.assertActionSilent(marvin_actions.marvinStream, "är mos en streamer?") |
||
| 14 |