sync the rest of the source models

refactor music download/storage to avoid re-download during reset
add palylist to test server setup
This commit is contained in:
austinried
2025-11-07 15:20:38 +09:00
parent 0e6acbed0f
commit 0c80dbdba5
13 changed files with 451 additions and 149 deletions

View File

@@ -64,13 +64,13 @@ void main() {
test('allPlaylists', () async {
final items = await source.allPlaylists().toList();
expect(items.length, equals(0));
expect(items.length, equals(1));
});
test('allPlaylistSongs', () async {
final items = await source.allPlaylistSongs().toList();
expect(items.length, equals(0));
expect(items.length, equals(7));
});
test('album-artist relation', () async {