Added tests #12

Merged
phoenix merged 8 commits from add_tests into devel 2025-03-22 20:32:05 +00:00
Showing only changes of commit c1039859ea - Show all commits

31
tests/album.json Normal file
View File

@@ -0,0 +1,31 @@
{
"album": "Sample Tracks! Yes",
"album_artist": "KD",
"genre": "Country",
"year": 2025,
"track_count": 3,
"disc_count": 1,
"tracks": [
{
"title": "E less",
"artist": "KD",
"disc": 1,
"track": 1,
"duration": 31
},
{
"title": "Aaaaaye",
"artist": "KD",
"disc": 1,
"track": 2,
"duration": 33
},
{
"title": "Check D out",
"artist": "KD",
"disc": 1,
"track": 3,
"duration": 22
}
]
}