Unit creates a SeqRef from a non-string element.
(self)
| 2065 | assert isinstance(e, SeqRef) |
| 2066 | |
| 2067 | def test_unit_seq(self): |
| 2068 | """Unit creates a SeqRef from a non-string element.""" |
| 2069 | |
| 2070 | u = Unit(IntVal(42)) |
| 2071 | assert isinstance(u, SeqRef) |
| 2072 | |
| 2073 | def test_seq_concat(self): |
| 2074 | """Sequence concatenation via + operator.""" |