test_module.py 292 B

1234567891011
  1. import unittest
  2. import acme_tiny
  3. class TestModule(unittest.TestCase):
  4. "Tests for acme_tiny.get_crt()"
  5. def setUp(self):
  6. self.CA = "https://acme-staging.api.letsencrypt.org"
  7. def test_ca(self):
  8. self.assertEqual(self.CA, "https://acme-staging.api.letsencrypt.org")