notescriber/tests/config_test.py

17 lines
443 B
Python
Raw Permalink Normal View History

2024-02-16 21:35:01 +00:00
# import unittest
# from notescriber.config import Config
2024-02-13 22:45:16 +00:00
2024-02-16 21:35:01 +00:00
# class TranscriptorTest(unittest.TestCase):
# def setUp(self):
# pass
2024-02-13 22:45:16 +00:00
2024-02-16 21:35:01 +00:00
# def tearDown(self):
# pass
2024-02-13 22:45:16 +00:00
2024-02-16 21:35:01 +00:00
# def test_run(self):
# cfg = Config()
# cfg.load_config(path="example.config.yaml")
# self.assertEqual("username", cfg.username)
# self.assertEqual("password", cfg.password)
# self.assertEqual("url.org", cfg.url)