mirror of https://github.com/rwf2/Rocket.git
14 lines
215 B
Rust
14 lines
215 B
Rust
|
#![feature(plugin)]
|
||
|
#![plugin(rocket_codegen)]
|
||
|
|
||
|
extern crate rocket;
|
||
|
use rocket::config::Environment;
|
||
|
|
||
|
mod common;
|
||
|
|
||
|
#[test]
|
||
|
fn test() {
|
||
|
common::test_config(Environment::Development);
|
||
|
common::test_hello();
|
||
|
}
|