forked from near/nearcore
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chain: remove nested
tests
modules (near#5486)
After moving tests from `/tests` to `/src/tests` and thus bringing them all into a single executable with a single namespace we ended up with aesthetically unpleasing nested paths such as: tests::catching_up::tests::test_chunk_grieving Flatten the structure by removing the inner `tests` module. Issue: near#5371
- Loading branch information
Showing
8 changed files
with
2,392 additions
and
2,444 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
mod challenges; | ||
#[cfg(feature = "expensive_tests")] | ||
mod doomslug; | ||
mod gc; | ||
mod simple_chain; | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
mod bug_repros; | ||
#[cfg(feature = "expensive_tests")] | ||
mod catching_up; | ||
mod chunks_management; | ||
#[cfg(feature = "expensive_tests")] | ||
mod consensus; | ||
mod cross_shard_tx; | ||
mod query_client; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters