feat: add test structure

This commit is contained in:
Kilerd Chan 2019-04-19 17:10:16 +08:00
parent db07ed669b
commit 5650131974

View File

@ -220,3 +220,12 @@ pub fn change_setting(
RubbleResponder::Redirect("/admin/panel".into())
}
#[cfg(test)]
mod test {
#[test]
fn test_normal() {
assert_eq!(1, 1);
}
}