From 2d932e3bba64b8d6dd31ec8a4062f752db6bea4e Mon Sep 17 00:00:00 2001 From: Sophist Date: Thu, 15 Oct 2015 10:51:20 +0100 Subject: [PATCH] Add support for automated tests. --- test/test_formats.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/test/test_formats.py b/test/test_formats.py index f72db8256..2ff56b3e6 100644 --- a/test/test_formats.py +++ b/test/test_formats.py @@ -137,6 +137,7 @@ class FLACTest(FormatsTest): 'comment:foo': 'Foo', 'genre': 'Foo', 'bpm': '80', + 'key': 'E#m', 'mood': 'Foo', 'isrc': 'Foo', 'copyright': 'Foo', @@ -206,6 +207,7 @@ class WMATest(FormatsTest): #'comment:foo': 'Foo', 'genre': 'Foo', 'bpm': '80', + 'key': 'E#m', 'mood': 'Foo', 'isrc': 'Foo', 'copyright': 'Foo', @@ -275,6 +277,7 @@ class MP3Test(FormatsTest): 'comment:foo': 'Foo', 'genre': 'Foo', 'bpm': '80', + 'key': 'E#m', 'mood': 'Foo', 'isrc': 'Foo', 'copyright': 'Foo', @@ -342,6 +345,7 @@ class TTATest(FormatsTest): 'comment:foo': 'Foo', 'genre': 'Foo', 'bpm': '80', + 'key': 'E#m', 'mood': 'Foo', 'isrc': 'Foo', 'copyright': 'Foo', @@ -410,6 +414,7 @@ if picard.formats.AiffFile: 'comment:foo': 'Foo', 'genre': 'Foo', 'bpm': '80', + 'key': 'E#m', 'mood': 'Foo', 'isrc': 'Foo', 'copyright': 'Foo', @@ -477,6 +482,7 @@ class OggVorbisTest(FormatsTest): 'comment:foo': 'Foo', 'genre': 'Foo', 'bpm': '80', + 'key': 'E#m', 'mood': 'Foo', 'isrc': 'Foo', 'copyright': 'Foo', @@ -545,6 +551,7 @@ class MP4Test(FormatsTest): #'comment:foo': 'Foo', 'genre': 'Foo', 'bpm': '80', + 'key': 'E#m', 'mood': 'Foo', 'isrc': 'Foo', 'copyright': 'Foo', @@ -612,6 +619,7 @@ class WavPackTest(FormatsTest): 'comment:foo': 'Foo', 'genre': 'Foo', 'bpm': '80', + 'key': 'E#m', 'mood': 'Foo', 'isrc': 'Foo', 'copyright': 'Foo', @@ -679,6 +687,7 @@ class MusepackSV7Test(FormatsTest): 'comment:foo': 'Foo', 'genre': 'Foo', 'bpm': '80', + 'key': 'E#m', 'mood': 'Foo', 'isrc': 'Foo', 'copyright': 'Foo', @@ -746,6 +755,7 @@ class MusepackSV8Test(FormatsTest): 'comment:foo': 'Foo', 'genre': 'Foo', 'bpm': '80', + 'key': 'E#m', 'mood': 'Foo', 'isrc': 'Foo', 'copyright': 'Foo',