ocarina/tests/core/playlists/Sconscript
Anna Schumaker a465577c86 core/playlists/system: Move system playlists into a new file
Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
2016-07-19 16:03:06 -04:00

16 lines
321 B
Python

#!/env/bin/python
Import("env", "CoreTest", "testing_group")
res = []
def PlaylistTest(name):
run = CoreTest("playlists/%s" % name)
Alias("tests/core/playlists", run)
if len(res) > 0 and testing_group([ "tests/core/playlists" ]):
Depends(run, res[1])
return run
res += [ PlaylistTest("system") ]
Return("res")