mirror of
https://github.com/rwf2/Rocket.git
synced 2024-12-31 23:02:37 +00:00
9 lines
154 B
Rust
9 lines
154 B
Rust
#[macro_use] extern crate rocket;
|
|
|
|
mod common;
|
|
|
|
#[test]
|
|
fn test_production_config() {
|
|
common::test_config(rocket::config::Environment::Production);
|
|
}
|