Exemplo n.º 1
0
 def test_message(self):
     response = self.app.get('/')
     message = hello_world.wrap_html('SA Tarea7 201314733')
     self.assertEqual(response.data, message)
 def test_message(self):
     response = self.app.get('/')
     message = hello_world.wrap_html('Hello World!')
     self.assertEqual(response.data, message)
 def test_message(self):
     response = self.app.get('/')
     message = hello_world.wrap_html('Welcome to CI/CD 101 using CircleCI')
     self.assertEqual(response.data, message)
Exemplo n.º 4
0
 def test_message(self):
     response = self.app.get('/')
     message = hello_world.wrap_html('Welcome to the DevOps Project!')
     self.assertTrue(response.data, message)
Exemplo n.º 5
0
 def test_HelloWorld_value(self):
     result = self.app.get('/')
     message = hello_world.wrap_html('Hello DockerCon!')
     self.assertEqual(result.data, message)