Modrinth/tests/v2_tests.rs
Wyatt Verchere a70df067bc
Misc v3 linear tasks (#767)
* v3_reroute 404 error

* hash change

* fixed issue with error conversion

* added new model confirmation tests
+ title name change

* renaming, fields

* owner; test changes

* clippy prepare

* fmt

* merge fixes

* clippy

* working merge

* revs

* merge fixes
2023-12-01 20:15:00 -07:00

20 lines
516 B
Rust

// importing common module.
mod common;
// Not all tests expect exactly the same functionality in v2 and v3.
// For example, though we expect the /GET version to return the corresponding project,
// we may want to do different checks for each.
// (such as checking client_side in v2, but loader fields on v3- which are model-exclusie)
// Such V2 tests are exported here
mod v2 {
mod error;
mod notifications;
mod project;
mod scopes;
mod search;
mod tags;
mod teams;
mod version;
}