Skip to content

Commit

Permalink
Add unit test for eval.tensors
Browse files Browse the repository at this point in the history
  • Loading branch information
Li-Xiang-Ideal committed Dec 14, 2023
1 parent 82b6231 commit b3c9004
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions test/eval/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# -*- coding: utf-8 -*-
16 changes: 16 additions & 0 deletions test/eval/test_tensors.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# -*- coding: utf-8 -*-
"""
Unit tests for mathics.eval.tensors
"""
import unittest

from mathics.eval.tensors import unpack_outer


class TestTensors(unittest.TestCase):
def test_unpack_outer(self):
assert True


if __name__ == "__main__":
unittest.main()

0 comments on commit b3c9004

Please sign in to comment.