示例#1
0
 def test_is_compound(self):
     for x in self.compound_meters:
         self.assertTrue(meter.is_compound(x),
                         "%d/%d should be a compound meter" % x)
示例#2
0
 def test_is_compound(self):
     list(map(lambda x: self.assert_(meter.is_compound(x),
         '%d/%d should be a compound meter' % x), self.compound_meters))
示例#3
0
	def test_is_compound(self):
		map(lambda x: self.assert_(meter.is_compound(x),\
						"%d/%d should be a compound meter" % x),\
						self.compound_meters)
示例#4
0
 def test_is_compound(self):
     list(map(lambda x: self.assertTrue(meter.is_compound(x),
         '%d/%d should be a compound meter' % x), self.compound_meters))