File: test_first.py

package info (click to toggle)
python-musicbrainz2 0.3.1-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 428 kB
  • ctags: 527
  • sloc: python: 2,301; xml: 724; makefile: 10
file content (10 lines) | stat: -rw-r--r-- 156 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
import unittest

class First(unittest.TestCase):
	def testRun(self):
		self.assert_( True )


def suite():
	suite = unittest.makeSuite(First)
	return suite