diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-06-19 03:03:29 +0200 |
---|---|---|
committer | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-06-19 15:25:07 +0200 |
commit | 89f835733c4019c5cb087885a874f34cf4ff183d (patch) | |
tree | e6b986089f904e46621370cb546a1b0f2e156f9a /testsuite/pyunit/dom/Literals.py | |
parent | 3bbdbaf0c5789baf38f6e4c57e4c669f1d8e03a0 (diff) | |
download | ghdl-89f835733c4019c5cb087885a874f34cf4ff183d.tar.gz ghdl-89f835733c4019c5cb087885a874f34cf4ff183d.tar.bz2 ghdl-89f835733c4019c5cb087885a874f34cf4ff183d.zip |
Testcase(s) for expressions.
Diffstat (limited to 'testsuite/pyunit/dom/Literals.py')
-rw-r--r-- | testsuite/pyunit/dom/Literals.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/testsuite/pyunit/dom/Literals.py b/testsuite/pyunit/dom/Literals.py index 8e426a0a9..7eb80abaa 100644 --- a/testsuite/pyunit/dom/Literals.py +++ b/testsuite/pyunit/dom/Literals.py @@ -1,10 +1,11 @@ -from pyGHDL.dom.Literal import IntegerLiteral -from pyGHDL.dom.Object import Constant from pathlib import Path from textwrap import dedent from unittest import TestCase from pyGHDL.dom.Misc import Design, Document +from pyGHDL.dom.Object import Constant +from pyGHDL.dom.Literal import IntegerLiteral + if __name__ == "__main__": print("ERROR: you called a testcase declaration file as an executable module.") |