(script)
| 151 | assert False |
| 152 | |
| 153 | def check_script(script): |
| 154 | if (type(script) is str): |
| 155 | script = bytes.fromhex(script) # Assuming this is hex string |
| 156 | if (type(script) is bytes or type(script) is CScript): |
| 157 | return script |
| 158 | assert False |
| 159 | |
| 160 | |
| 161 | class TestFrameworkScript(unittest.TestCase): |
no test coverage detected