2016-12-27 22:35:14 +00:00
|
|
|
#![feature(plugin)]
|
|
|
|
#![plugin(rocket_codegen)]
|
|
|
|
|
|
|
|
extern crate rocket;
|
|
|
|
|
|
|
|
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
|
|
|
}
|