Completed
Push — master ( a208b6...2c60dc )
by Kolen
01:08
created

test_native()   A

Complexity

Conditions 2

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 5
Bugs 0 Features 0
Metric Value
cc 2
dl 0
loc 6
rs 9.4285
c 5
b 0
f 0
1
#!/usr/bin/env python3
2
3
"""
4
`reference_pantable.native`: the correct output
5
`test_pantable.native`: from `make`
6
"""
7
8
import filecmp
9
10
11
def test_native():
12
    assert filecmp.cmp(
13
        'tests/reference_pantable.native',
14
        'tests/test_pantable.native'
15
    )
16
    return
17