コード例 #1
0
 def assertCamelGroups(word, groups):
     self.assertEquals(list(camelGroups(word)), groups.split())
コード例 #2
0
ファイル: test_matchers.py プロジェクト: wankata/pysmell
 def assertCamelGroups(word, groups):
     expected = groups.split()
     actual = list(camelGroups(word))
     msg = "expected %s, but got %s camelGroups" % (expected, actual)
     self.assertEqual(actual, expected, msg)
コード例 #3
0
ファイル: test_matchers.py プロジェクト: LunarBiscuit/pysmell
 def assertCamelGroups(word, groups):
     self.assertEquals(list(camelGroups(word)), groups.split())
コード例 #4
0
ファイル: test_matchers.py プロジェクト: estebank/pysmell
 def assertCamelGroups(word, groups):
     expected = groups.split()
     actual = list(camelGroups(word))
     msg = "expected %s, but got %s camelGroups" % (expected, actual)
     self.assertEquals(actual, expected, msg)