6 lines
77 B
Python
6 lines
77 B
Python
from nose import tools
|
|
|
|
def test_passing():
|
|
tools.assert_equals(1+1, 2)
|
|
|