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