13 lines
213 B
Python
13 lines
213 B
Python
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
import unittest
|
||
|
|
|
||
|
|
|
||
|
|
class EmbedTest(unittest.TestCase):
|
||
|
|
def test_embed_function(self) -> None:
|
||
|
|
self.assertEqual(0, 0)
|
||
|
|
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
unittest.main()
|