Rocket/examples/config/tests/production.rs
2016-12-28 18:24:54 -06:00

13 lines
215 B
Rust

#![feature(plugin)]
#![plugin(rocket_codegen)]
extern crate rocket;
mod common;
#[test]
fn test_production_config() {
common::test_config(rocket::config::Environment::Production);
common::test_hello();
}