Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add validation tests #8

Merged
merged 2 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 32 additions & 32 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "rgb-integration-tests"
name = "rgb-tests"
version = "0.1.0"
authors = [
"Zoe Faltibà <[email protected]>",
Expand All @@ -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"
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -11,15 +11,15 @@ 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:
```sh
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
```
Expand Down
Loading