Rocket/examples/config/tests/development.rs

12 lines
238 B
Rust
Raw Normal View History

#![feature(plugin, decl_macro, proc_macro_non_items)]
2016-12-27 22:35:14 +00:00
#![plugin(rocket_codegen)]
#[macro_use] extern crate rocket;
2016-12-27 22:35:14 +00:00
mod common;
#[test]
2016-12-29 00:24:54 +00:00
fn test_development_config() {
common::test_config(rocket::config::Environment::Development);
2016-12-27 22:35:14 +00:00
}