77341ef4b7
Makes changes to tox configuration so unit tests can be run in the py27 environment. Change-Id: I4867dfbdf180e6f84ca178b0770a3a3ae0ce32bf
8 lines
113 B
Python
8 lines
113 B
Python
from unittest import TestCase
|
|
|
|
|
|
class TestUnits(TestCase):
|
|
|
|
def test_units(self):
|
|
assert 5 * 5 == 25
|