add two asserts in unit tests for spec::authority_round

This commit is contained in:
Guanqun Lu 2017-05-11 14:05:56 +08:00
parent cf0b8b7681
commit f90802498f
1 changed files with 5 additions and 1 deletions

View File

@ -60,6 +60,8 @@ pub struct AuthorityRound {
#[cfg(test)]
mod tests {
use uint::Uint;
use util::U256;
use serde_json;
use spec::authority_round::AuthorityRound;
@ -79,6 +81,8 @@ mod tests {
}
}"#;
let _deserialized: AuthorityRound = serde_json::from_str(s).unwrap();
let deserialized: AuthorityRound = serde_json::from_str(s).unwrap();
assert_eq!(deserialized.params.gas_limit_bound_divisor, Uint(U256::from(0x0400)));
assert_eq!(deserialized.params.step_duration, Uint(U256::from(0x02)));
}
}