Test Failed
Pull Request — master (#86)
by Daniel
04:59
created

test_uptime   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 7
dl 0
loc 14
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A UptimeTest.testUptime() 0 4 1
1
"""
2
Tests for the Marvin Uptime action
3
"""
4
5
from test_action import ActionTest
6
from irc2phpbb import marvin_actions
7
8
class UptimeTest(ActionTest):
9
    """Tests for the Marvin Uptime action"""
10
    def testUptime(self):
11
        """Test that marvin can provide the link to the uptime tournament"""
12
        self.assertStringsOutput(marvin_actions.marvinUptime, "visa lite uptime", "uptime", "info")
13
        self.assertActionSilent(marvin_actions.marvinUptime, "uptimetävling")
14