FIX: Add infrastructure for python tests (#91)
Also integrated with CI and runs tests in documentation
This commit is contained in:
committed by
GitHub
parent
11df4a55c7
commit
bf9a1ed9f4
8
bindings/python/tests/test_create.py
Normal file
8
bindings/python/tests/test_create.py
Normal file
@@ -0,0 +1,8 @@
|
||||
import ironcalc as ic
|
||||
|
||||
def test_simple():
|
||||
model = ic.create("model", "en", "UTC")
|
||||
model.set_user_input(0, 1, 1, "=1+2")
|
||||
model.evaluate()
|
||||
|
||||
assert model.get_formatted_cell_value(0, 1, 1) == "3"
|
||||
Reference in New Issue
Block a user