We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2eeec62 commit 1a5f414Copy full SHA for 1a5f414
2 files changed
tests/test_editor_project.py
@@ -1,4 +1,6 @@
1
-from scratchattach import editor
+import sys
2
3
-def test_1():
4
- project = editor.Project.from_id(1209355136)
+def test_import():
+ sys.path.insert(0, ".")
5
+ from scratchattach import editor
6
+ proj = editor.Project.from_id(104)
tests/test_project.py
@@ -1,4 +1,7 @@
+
def test_get():
import scratchattach as sa
project = sa.get_project(1209355136)
7
0 commit comments