diff --git a/tests/lib.rs b/tests/lib.rs index 2111547cc7..30b680490b 100644 --- a/tests/lib.rs +++ b/tests/lib.rs @@ -305,7 +305,16 @@ fn batch( ), ); - // test that after etching, no outputs have both rune balances and inscriptions + let response = ord_rpc_server.json_request("/inscriptions"); + + assert!(response.status().is_success()); + + for id in response.json::().unwrap().ids { + let response = ord_rpc_server.json_request(format!("/inscription/{id}")); + assert!(response.status().is_success()); + let inscription = response.json::().unwrap(); + assert!(inscription.satpoint.outpoint != location); + } assert_eq!(bitcoin_rpc_server.address(location), destination);