(self, r, script_bytes)
| 49 | assert script.sha == "1329344e6bf995a35a8dc57ab1a6af8b2d54a763" |
| 50 | |
| 51 | def test_encoder(self, r, script_bytes): |
| 52 | encoder = Script(r, script_bytes).get_encoder() |
| 53 | assert encoder is not None |
| 54 | assert encoder.encode("fake-script") == b"fake-script" |
| 55 | |
| 56 | |
| 57 | class TestScripting: |
nothing calls this directly
no test coverage detected