(**query)
| 138 | print('FAIL') |
| 139 | |
| 140 | def test_create(**query): |
| 141 | output = test_latest('SPICE_Text', ACTION='Create Keys', **query) |
| 142 | x, x, major, x, x, x, minor = output.split('\n') |
| 143 | major = hex2bin(major) |
| 144 | minor = hex2bin(minor) |
| 145 | spice._check_major(major) |
| 146 | spice._check_minor(minor) |
| 147 | return major, minor |
| 148 | |
| 149 | def test_encode(major, minor, data): |
| 150 | hma = bin2hex(major) |
no test coverage detected