Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
jmbannon committed Jun 18, 2023
1 parent 5caf083 commit b6b8623
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions test/test_mediafile.py
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,10 @@ def _generate_tags(self, base=None):
for key in ['disc', 'disctotal', 'track', 'tracktotal', 'bpm']:
tags[key] = 1

for key in ['artists', 'albumartists']:
for key in [
'artists', 'albumartists', 'artists_credits',
'albumartists_credits', 'artists_sort', 'albumartists_sort'
]:
tags[key] = ['multival', 'test']

tags['art'] = self.jpg_data
Expand Down Expand Up @@ -1110,7 +1113,8 @@ def test_known_fields(self):
fields.extend(
('encoder', 'images', 'genres', 'albumtype', 'artists',
'albumartists', 'url', 'mb_artistids', 'mb_albumartistids',
'albumtypes', 'catalognums', 'languages')
'albumtypes', 'catalognums', 'languages', 'artists_credits',
'artists_sort', 'albumartists_credits', 'albumartists_sort')
)
assertCountEqual(self, MediaFile.fields(), fields)

Expand Down

0 comments on commit b6b8623

Please sign in to comment.