mirror of
https://github.com/rwf2/Rocket.git
synced 2025-02-02 23:02:09 +00:00
11 lines
199 B
Rust
11 lines
199 B
Rust
#![feature(proc_macro_hygiene, decl_macro)]
|
|
|
|
#[macro_use] extern crate rocket;
|
|
|
|
mod common;
|
|
|
|
#[test]
|
|
fn test_production_config() {
|
|
common::test_config(rocket::config::Environment::Production);
|
|
}
|