10 lines
209 B
Python
10 lines
209 B
Python
|
from ..hdl.ir import Fragment
|
||
|
from ..compat import *
|
||
|
from .utils import *
|
||
|
|
||
|
|
||
|
class CompatTestCase(FHDLTestCase):
|
||
|
def test_fragment_get(self):
|
||
|
m = Module()
|
||
|
f = Fragment.get(m, platform=None)
|