diff options
| author | Yuval Adam <_@yuv.al> | 2019-03-18 14:16:49 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2019-03-18 14:20:57 +0200 |
| commit | 77614da6736185a50b71713e4e0b3f7a7c4e840b (patch) | |
| tree | bd74ab84f37d6c2485fae3a36082f6407b025194 /src/lib.rs | |
| parent | 2cda7faab3eab847947d5da85202d1fb7bfbc766 (diff) | |
Initial version of bchlib-sys
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -6,8 +6,12 @@ include!(concat!(env!("OUT_DIR"), "/bindings.rs")); #[cfg(test)] mod tests { + use super::*; + #[test] fn it_works() { - assert_eq!(2 + 2, 4); + unsafe { + let _c = init_bch(5, 2, 37); + } } } |
