Skip to content
Snippets Groups Projects
Select Git revision
  • 334653ebb15904af30cb77d8ae70361301a66adf
  • main default protected
2 results

cool_module.py

Blame
    • Marcel Loose's avatar
      334653eb
      Rename source directory · 334653eb
      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.
      334653eb
      History
      Rename source directory
      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.
    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)