mirror of
https://github.com/rwf2/Rocket.git
synced 2025-01-03 16:22:37 +00:00
3e4f8453ce
Also removes one internal use in the 'typed-uris' codegen test.
11 lines
189 B
Rust
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);
|
|
}
|