コード例 #1
0
ファイル: tests.py プロジェクト: brynsroberts/ci_test
 def test2(self):
     expected = "Goodbye World"
     self.assertNotEqual(task.my_func(), expected)
コード例 #2
0
ファイル: tests.py プロジェクト: brynsroberts/ci_test
	def test1(self):
        expected = "Hello World"
        self.assertEqual(task.my_func(), expected)
コード例 #3
0
ファイル: tests.py プロジェクト: Josh-Kaiser-OSU/ci_example
 def test3(self):
     expected = "Sup buddy"
     self.assertNotEqual(task.my_func(), expected)