Add a test to check if an empty ID3v2 frame is really skipped.

This commit is contained in:
Tsuda Kageyu 2015-05-18 19:03:20 +09:00
parent 5f0a7da481
commit 8da0013482

View File

@ -1066,6 +1066,7 @@ public:
ID3v2::Tag *tag = f.ID3v2Tag();
CPPUNIT_ASSERT_EQUAL(String("Title"), tag->title());
CPPUNIT_ASSERT_EQUAL(true, tag->frameListMap()["WOAF"].isEmpty());
}
}