()
| 9 | |
| 10 | |
| 11 | def test_atyp_constructors(): |
| 12 | obj = m.atyp() |
| 13 | assert obj.__class__.__name__ == "atyp" |
| 14 | obj = m.atyp("") |
| 15 | assert obj.__class__.__name__ == "atyp" |
| 16 | obj = m.atyp("txtm") |
| 17 | assert obj.__class__.__name__ == "atyp" |
| 18 | |
| 19 | |
| 20 | @pytest.mark.parametrize( |