コード例 #1
0
 def test_hello(self):
     friend_name = "Pepe"
     assert hello(friend_name) == "Hello, %s!" % friend_name
コード例 #2
0
 def test_hello(self):
     self.assertTrue("Hello" in hello("Bob"))
コード例 #3
0
 def test_hello_no_arg(self):
     self.assertTrue("Hello" in hello())
コード例 #4
0
 def test_hello(self):
     self.assertEqual(hello('Mihai'), 'Hello, Mihai!')
コード例 #5
0
    def test_hello_outputs_correct_name(self):
        result = hello('John')

        self.assertEqual('Hello, John!', result)
コード例 #6
0
 def test_hello(self):
     self.assertEqual(hello("John"), "Hello, John!")
     self.assertEqual(hello(""), "Hello, !")
コード例 #7
0
 def test_hello_return_type(self):
     self.assertTrue(isinstance(hello("world"), str))
コード例 #8
0
def test_hello(friend, expected):
    h = hello(friend)
    assert h == "Hello, {}!".format(expected)