From c1039859eaa5a3989e75db83dc71b204934a3d31 Mon Sep 17 00:00:00 2001 From: phoenix Date: Sat, 22 Mar 2025 16:01:10 -0400 Subject: [PATCH] Added album file --- tests/album.json | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 tests/album.json diff --git a/tests/album.json b/tests/album.json new file mode 100644 index 0000000..7124099 --- /dev/null +++ b/tests/album.json @@ -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 + } + ] +}