From 0a2e421b46bcb813dc520930d2b361e2e4c000fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zoe=20Faltib=C3=A0?= Date: Thu, 12 Sep 2024 10:13:20 +0200 Subject: [PATCH] rename from rgb-integration-tests to rgb-tests --- Cargo.lock | 64 +++++++++++++++++++++++++++--------------------------- Cargo.toml | 8 +++---- README.md | 8 +++---- 3 files changed, 40 insertions(+), 40 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f81305e..af5e05c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1624,38 +1624,6 @@ dependencies = [ "wasm-bindgen", ] -[[package]] -name = "rgb-integration-tests" -version = "0.1.0" -dependencies = [ - "amplify 4.7.0", - "bitcoin_hashes", - "bp-core", - "bp-electrum", - "bp-esplora", - "bp-invoice", - "bp-std", - "bp-wallet", - "descriptors", - "once_cell", - "psbt", - "rand", - "rgb-interfaces", - "rgb-psbt", - "rgb-runtime", - "rgb-schemata", - "rgb-std", - "rstest", - "rstest_reuse", - "serde_yaml", - "strict_encoding", - "strict_types", - "strum", - "strum_macros", - "time", - "tree_magic_mini", -] - [[package]] name = "rgb-interfaces" version = "0.11.0-beta.8" @@ -1774,6 +1742,38 @@ dependencies = [ "wasm-bindgen", ] +[[package]] +name = "rgb-tests" +version = "0.1.0" +dependencies = [ + "amplify 4.7.0", + "bitcoin_hashes", + "bp-core", + "bp-electrum", + "bp-esplora", + "bp-invoice", + "bp-std", + "bp-wallet", + "descriptors", + "once_cell", + "psbt", + "rand", + "rgb-interfaces", + "rgb-psbt", + "rgb-runtime", + "rgb-schemata", + "rgb-std", + "rstest", + "rstest_reuse", + "serde_yaml", + "strict_encoding", + "strict_types", + "strum", + "strum_macros", + "time", + "tree_magic_mini", +] + [[package]] name = "ring" version = "0.17.8" diff --git a/Cargo.toml b/Cargo.toml index 39a5aa0..0506395 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "rgb-integration-tests" +name = "rgb-tests" version = "0.1.0" authors = [ "Zoe FaltibĂ  ", @@ -8,10 +8,10 @@ authors = [ ] edition = "2021" rust-version = "1.75.0" -repository = "https://github.com/RGB-WG/rgb-integration-tests" -homepage = "https://github.com/RGB-WG/rgb-integration-tests" +repository = "https://github.com/RGB-WG/rgb-tests" +homepage = "https://github.com/RGB-WG/rgb-tests" license = "Apache-2.0" -description = "RGB integration tests" +description = "RGB tests" [dependencies] bitcoin_hashes = "0.14.0" diff --git a/README.md b/README.md index 3abee8b..64a481d 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# RGB integration tests +# RGB tests -This repository contains integration tests for RGB. +This repository contains tests for RGB. ## Requirements - Linux OS @@ -11,7 +11,7 @@ This repository contains integration tests for RGB. Clone the project, including submodules: ```sh -git clone https://github.com/RGB-WG/rgb-integration-tests --recurse-submodules +git clone https://github.com/RGB-WG/rgb-tests --recurse-submodules ``` Note: after checking out to another commit, remember to run: @@ -19,7 +19,7 @@ Note: after checking out to another commit, remember to run: git submodule update ``` -Then, from the project root, run the integration tests by running: +Then, from the project root, run the tests by running: ```sh cargo test ```