8 lines
134 B
Python
8 lines
134 B
Python
from lsp import json_rpc_client
|
|
# content of test_sample.py
|
|
def func(x):
|
|
return x + 1
|
|
|
|
def test_answer():
|
|
assert func(3) == 5
|