File: test_first.py

package info (click to toggle)
python-musicbrainz2 0.7.4-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 648 kB
  • ctags: 881
  • sloc: python: 4,624; xml: 999; makefile: 14
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