parity-common/tests/src/lib.rs

20 lines
301 B
Rust
Raw Normal View History

2017-10-24 01:09:44 -07:00
extern crate core;
extern crate ethereum_types;
2017-10-30 10:00:58 -07:00
#[cfg(test)]
2017-10-24 01:09:44 -07:00
#[macro_use]
extern crate uint;
2017-10-30 10:00:58 -07:00
#[cfg(test)]
2017-10-24 01:09:44 -07:00
#[macro_use]
extern crate crunchy;
2017-10-30 10:00:58 -07:00
#[cfg(test)]
2017-10-24 01:09:44 -07:00
#[macro_use]
extern crate quickcheck;
#[cfg(test)]
extern crate serde_json;
2017-10-24 01:09:44 -07:00
2017-10-30 10:00:58 -07:00
#[cfg(test)]
pub mod uint_tests;
#[cfg(test)]
pub mod serialization;