blob: 238d0b58b28261807822d775389c3d7fa56135fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
# For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt
import m1
import m2
import m3
a = 5
b = 6
assert m1.m1a == 1
assert m2.m2a == 1
assert m3.m3a == 1
|