mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
715ab8b96a
So seamless.
8 lines
175 B
Python
8 lines
175 B
Python
from unittest import TestCase
|
|
|
|
class HelloWorldTest(TestCase):
|
|
def testHelloMsg(self):
|
|
from hello import hello
|
|
self.assertEqual(hello(), "Hello, world!")
|
|
|