Rocket/examples/config/tests/production.rs
2020-07-11 10:48:08 -07:00

9 lines
154 B
Rust

#[macro_use] extern crate rocket;
mod common;
#[test]
fn test_production_config() {
common::test_config(rocket::config::Environment::Production);
}