Rocket/examples/config/tests/production.rs

11 lines
200 B
Rust

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