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

SmokeTest.test_bad_maths()   A

Complexity

Conditions 1

Size

Total Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 2
rs 10
cc 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