Completed
Pull Request — master (#118)
by Jasper
01:07
created

niprov.Diff   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 10
Duplicated Lines 0 %
Metric Value
dl 0
loc 10
rs 10
wmc 3

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __init__() 0 2 1
A assertEqualProtocol() 0 2 1
A areEqual() 0 2 1
1
2
3
class Diff(object):
4
5
    def __init__(self, file1, file2):
6
        pass
7
8
    def areEqual(self):
9
        return True
10
11
    def assertEqualProtocol(self):
12
        pass
13