Add conftest.py and test_integration.py

This commit is contained in:
2024-01-22 15:29:57 -05:00
parent 62237c2486
commit 9a3603c3c8
2 changed files with 15 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
def neon():
from neon_client import NeonAPI
return NeonAPI.from_environ()
+11
View File
@@ -0,0 +1,11 @@
import neon_client
def test_me(neon):
me = neon.me()
assert me
def test_get_projects(neon):
projects = neon.get_projects()
assert projects