]> git.proxmox.com Git - rustc.git/blob - src/vendor/hamcrest/tests/prelude.rs
New upstream version 1.19.0+dfsg1
[rustc.git] / src / vendor / hamcrest / tests / prelude.rs
1 // Copyright 2016 Urban Hafner
2 //
3 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
5 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
6 // option. This file may not be copied, modified, or distributed
7 // except according to those terms.
8
9 extern crate hamcrest;
10
11 use hamcrest::prelude::*;
12
13 #[test]
14 fn it_successfully_uses_imported_functions() {
15 assert_that(1, is(equal_to(1)));
16 }