mirror of
https://github.com/Relintai/gdnative_python.git
synced 2024-11-14 10:27:22 +01:00
12 lines
370 B
Python
12 lines
370 B
Python
# This test is in it own file to protect other tests from the `import *` side effects
|
|
from godot import *
|
|
|
|
# Class with trailing underscore not are provided on star import
|
|
from godot.bindings import _OS, _ProjectSettings
|
|
|
|
|
|
def test_starimport():
|
|
assert issubclass(Node, Object)
|
|
assert isinstance(OS, _OS)
|
|
assert isinstance(ProjectSettings, _ProjectSettings)
|