
Change-Id: I5486e1f9b3143c6bb0804c49c7ca21adb9b84de1 Reviewed-on: https://forge.frm2.tum.de/review/19524 Reviewed-by: Enrico Faulhaber <enrico.faulhaber@frm2.tum.de> Tested-by: Enrico Faulhaber <enrico.faulhaber@frm2.tum.de>
11 lines
175 B
Python
11 lines
175 B
Python
from __future__ import division, print_function
|
|
|
|
|
|
def test_assert():
|
|
assert 1
|
|
|
|
|
|
def test_constants(constants):
|
|
assert constants.ONE == 1
|
|
assert constants.TWO == 2
|