8bcffb67cb
* ignore TODO and kademlia * remove unnecessary pass * fixed swarm warnings * fixed peerdata_interface warnings * fixed peer warnings * fixed rest of linting errors * trying to fix last error * fixed dup errors
20 lines
404 B
Python
20 lines
404 B
Python
import pytest
|
|
|
|
# pylint: disable=eval-used
|
|
|
|
@pytest.mark.parametrize("test_input,expected", [
|
|
("3+5", 8),
|
|
("2+4", 6),
|
|
("6*9", 54),
|
|
])
|
|
def test_eval(test_input, expected):
|
|
assert eval(test_input) == expected
|
|
|
|
@pytest.mark.parametrize("test_input,expected", [
|
|
("3+5", 8),
|
|
("2+4", 6),
|
|
("6*5", 30),
|
|
])
|
|
def test_eval2(test_input, expected):
|
|
assert eval(test_input) == expected
|