tests for the last few issues (these test scripts should work with recent APIs, while the rest of the test suite needs an overhaul)
This commit is contained in:
parent
a57f0875f8
commit
2f4ebf3420
21 changed files with 1570 additions and 0 deletions
9
tests/minimal_test.py
Normal file
9
tests/minimal_test.py
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
#!/usr/bin/env python3
|
||||
"""Minimal test to check if module works"""
|
||||
import sys
|
||||
import mcrfpy
|
||||
|
||||
print("Module loaded successfully")
|
||||
print(f"mcrfpy has window: {hasattr(mcrfpy, 'window')}")
|
||||
print(f"mcrfpy.Frame exists: {hasattr(mcrfpy, 'Frame')}")
|
||||
sys.exit(0)
|
||||
Loading…
Add table
Add a link
Reference in a new issue