Select Git revision
cool_module.py
-
Marcel Loose authored
Renamed source directory, so that it matches with the package name. Otherwise setuptools won't be able to automatically find the source files.
Marcel Loose authoredRenamed source directory, so that it matches with the package name. Otherwise setuptools won't be able to automatically find the source files.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
test_cool_module.py 309 B
"""Testing of the Cool Module"""
from unittest import TestCase
from map.cool_module import greeter
class TestCoolModule(TestCase):
"""Test Case of the Cool Module"""
def test_greeter(self):
"""Testing that the greeter does not crash"""
greeter()
self.assertEqual(2 + 2, 4)