Rocket/examples/config/tests/development.rs
Jeb Rosen 3e4f8453ce Remove use of the 'decl_macro' feature.
Also removes one internal use in the 'typed-uris' codegen test.
2019-07-19 11:39:56 -07:00

11 lines
189 B
Rust

#![feature(proc_macro_hygiene)]
#[macro_use] extern crate rocket;
mod common;
#[test]
fn test_development_config() {
common::test_config(rocket::config::Environment::Development);
}