Test Failed
Pull Request — master (#86)
by Daniel
06:22 queued 03:08
created

test_help.HelpTest.testHelp()   A

Complexity

Conditions 1

Size

Total Lines 4
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nop 1
1
"""
2
Tests for the Marvin Help action
3
"""
4
5
from test_action import ActionTest
6
from irc2phpbb import marvin_actions
7
8
class HelpTest(ActionTest):
9
    """Tests for the Marvin Help action"""
10
    def testHelp(self):
11
        """Test that marvin can provide a help menu"""
12
        self.assertStringsOutput(marvin_actions.marvinHelp, "help", "menu")
13
        self.assertActionSilent(marvin_actions.marvinHelp, "halp")
14