mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-18 23:49:09 +00:00
12 lines
236 B
Rust
12 lines
236 B
Rust
#![feature(plugin, decl_macro, proc_macro_non_items)]
|
|
#![plugin(rocket_codegen)]
|
|
|
|
#[macro_use] extern crate rocket;
|
|
|
|
mod common;
|
|
|
|
#[test]
|
|
fn test_production_config() {
|
|
common::test_config(rocket::config::Environment::Production);
|
|
}
|