mirror of
https://github.com/certbot/certbot.git
synced 2026-06-05 06:42:10 -04:00
11 lines
267 B
Python
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)
|