Skip to content

Commit

Permalink
started refactoring tests to remove duplicate code
Browse files Browse the repository at this point in the history
  • Loading branch information
Timtam committed Mar 6, 2024
1 parent 84064b7 commit f7960ff
Show file tree
Hide file tree
Showing 4 changed files with 121 additions and 419 deletions.
3 changes: 3 additions & 0 deletions server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,6 @@ strum = { version = "0.26.1", features = ["strum_macros", "derive"]}

[build-dependencies]
csv = "1.3.0"

[dev-dependencies]
futures = "0.3.30"
6 changes: 3 additions & 3 deletions server/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ fn rocket_from_config(figment: Figment) -> Rocket<Build> {
openapi_get_routes![
users_routes::get_all_users,
users_routes::get_user,
users_routes::user_login,
users_routes::user_logout,
users_routes::user_signup,
users_routes::login,
users_routes::logout,
users_routes::signup,
games_routes::create_game,
games_routes::get_all_games,
games_routes::join_game,
Expand Down
Loading

0 comments on commit f7960ff

Please sign in to comment.