mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 10:54:24 -04:00
6 lines
155 B
Python
6 lines
155 B
Python
import pytest
|
|
|
|
def test_missing_file(audiomgr):
|
|
sound = audiomgr.get_sound('/not/a/valid/file.ogg')
|
|
assert str(sound).startswith('NullAudioSound')
|