12 lines
180 B
Python
12 lines
180 B
Python
"""
|
|
Tests for xxx module.
|
|
"""
|
|
|
|
|
|
class Tests(object):
|
|
def test_basic_addition(self):
|
|
"""
|
|
Tests that 1 + 1 always equals 2.
|
|
"""
|
|
assert 1 + 1 == 2
|