Rocket/examples/config/tests/production.rs

14 lines
214 B
Rust
Raw Normal View History

2016-12-27 22:35:14 +00:00
#![feature(plugin)]
#![plugin(rocket_codegen)]
extern crate rocket;
use rocket::config::Environment;
mod common;
#[test]
fn test() {
common::test_config(Environment::Production);
common::test_hello();
}