mirror of
https://github.com/alerta/alerta.git
synced 2025-01-24 17:29:39 +00:00
12 lines
No EOL
230 B
Python
12 lines
No EOL
230 B
Python
from .context import alerta
|
|
|
|
import unittest
|
|
|
|
class BasicTestSuite(unittest.TestCase):
|
|
"""Basic test cases."""
|
|
|
|
def test_absolute_truth_and_meaning(self):
|
|
assert True
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main() |