blob: 3d0eba65f45d0d5b36cd442402082ecfd02f4599 (
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://github.com/nedbat/coveragepy/blob/master/NOTICE.txt
import m1
import m2
import m3
a = 5
b = 6
assert m1.m1a == 1
assert m2.m2a == 1
assert m3.m3a == 1
|