1# -*- coding: utf-8 -*-
2
3import os
4
5from tests.test_tools import _TTools
6
7from mutagen._senf import fsnative
8
9
10class TMutagenPony(_TTools):
11
12    TOOL_NAME = u"mutagen-pony"
13
14    def test_basic(self):
15        base = os.path.join(fsnative(u'tests'), fsnative(u'data'))
16        res, out = self.call(base)
17        self.failIf(res)
18        self.failUnless("Report for %s" % base in out)
19