dl-rename/media_test.go
2017-09-24 14:11:52 +02:00

12 lines
236 B
Go

package main
import "testing"
func Test(t *testing.T) {
m := newMediaElement("Misfits - S02E03 - EN FORCED")
result := "Misfits - S02E03 EN FORCED"
if m.Path() != result {
t.Error("Expected " + result + ", got " + m.Path())
}
}