11 lines
217 B
Python
11 lines
217 B
Python
|
|
#!/usr/bin/env python3
|
||
|
|
"""Test audio cleanup on exit"""
|
||
|
|
import mcrfpy
|
||
|
|
import sys
|
||
|
|
|
||
|
|
print("Testing audio cleanup...")
|
||
|
|
|
||
|
|
# Create a scene and immediately exit
|
||
|
|
mcrfpy.createScene("test")
|
||
|
|
print("Exiting now...")
|
||
|
|
sys.exit(0)
|