mirror of
https://github.com/573dev/gfdm-server.git
synced 2026-03-21 17:54:19 -05:00
8 lines
146 B
Python
8 lines
146 B
Python
from v8_server.template import function_test
|
|
|
|
|
|
def test_function_test():
|
|
data = 2
|
|
expected = 4
|
|
assert function_test(data) == expected
|