Completed
Push — master ( aface4...d5d1bb )
by Mathias
02:27
created

SmokeTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
dl 0
loc 4
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A test_bad_maths() 0 2 1
1
from django.test import TestCase
2
3
4
class SmokeTest(TestCase):
5
6
    def test_bad_maths(self):
7
        self.assertEqual(1 + 1, 3)
8