certbot/certbot-apache/tests/dummy_test.py
Adrien Ferrand 920ad89f0a Dummy test
2021-05-31 22:33:03 +02:00

11 lines
267 B
Python

"""
This test module is here to provide at least on test on Windows, and thus avoid
pytest to fail because no tests could be found.
"""
import unittest
class DummyTest(unittest.TestCase):
"""Dummy test"""
def test_dummy(self):
self.assertTrue(True)