def test_helloworld(self):
     self.assertEqual(get_message(), 'Hello World!')
Esempio n. 2
0
def hello():
    return render_template('index.html',
        message=get_message())
Esempio n. 3
0
def hello():
    return render_template('index.html',
            message=get_message())
Esempio n. 4
0
 def test_helloworld(self):
     self.assertEqual(get_message(), 'Hello World!')