2009-02-09 22:50:04 -05:00
|
|
|
! Copyright (C) 2009 Tim Wawrzynczak
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2009-02-18 22:32:31 -05:00
|
|
|
USING: tools.test id3 id3.private ;
|
2009-02-09 22:50:04 -05:00
|
|
|
IN: id3.tests
|
|
|
|
|
|
|
|
[
|
2009-02-18 22:32:31 -05:00
|
|
|
T{ id3-info
|
|
|
|
{ title "BLAH" }
|
|
|
|
{ artist "ARTIST" }
|
|
|
|
{ album "ALBUM" }
|
|
|
|
{ year "2009" }
|
|
|
|
{ comment "COMMENT" }
|
|
|
|
{ genre "Bluegrass" }
|
2009-02-09 22:50:04 -05:00
|
|
|
}
|
2009-02-18 22:32:31 -05:00
|
|
|
] [ "resource:extra/id3/tests/blah.mp3" file-id3-tags ] unit-test
|
|
|
|
|
|
|
|
[
|
|
|
|
T{ id3-info
|
|
|
|
{ title "Anthem of the Trinity" }
|
|
|
|
{ artist "Terry Riley" }
|
|
|
|
{ album "Shri Camel" }
|
|
|
|
{ genre "Classical" }
|
2009-02-09 22:50:04 -05:00
|
|
|
}
|
2009-02-10 11:37:46 -05:00
|
|
|
] [ "resource:extra/id3/tests/blah2.mp3" file-id3-tags ] unit-test
|
2009-02-09 22:50:04 -05:00
|
|
|
|
|
|
|
[
|
2009-02-18 22:32:31 -05:00
|
|
|
T{ id3-info
|
|
|
|
{ title "Stormy Weather" }
|
|
|
|
{ artist "Frank Sinatra" }
|
|
|
|
{ album "Night and Day Frank Sinatra" }
|
|
|
|
{ comment "eng, AG# 08E1C12E" }
|
|
|
|
{ genre "Big Band" }
|
|
|
|
}
|
|
|
|
] [ "resource:extra/id3/tests/blah3.mp3" file-id3-tags ] unit-test
|
2009-02-09 22:50:04 -05:00
|
|
|
|