()
| 345 | |
| 346 | #[test] |
| 347 | fn test_script_debug() { |
| 348 | let script = script! { |
| 349 | OP_TRUE |
| 350 | DEBUG |
| 351 | OP_TRUE |
| 352 | OP_VERIFY |
| 353 | }; |
| 354 | let exec_result = execute_script(script); |
| 355 | assert!(!exec_result.success); |
| 356 | } |
| 357 | |
| 358 | #[test] |
| 359 | fn test_script_execute() { |
nothing calls this directly
no test coverage detected