cargo CI
This commit is contained in:
parent
08c153049a
commit
54dbbae173
|
@ -36,8 +36,8 @@ impl AnimalWorld {
|
|||
#[given(regex = r"^a (hungry|satiated) cat$")]
|
||||
async fn hungry_cat(world: &mut AnimalWorld, state: String) {
|
||||
match state.as_str() {
|
||||
"hungry" => world.cat.hungry = true,
|
||||
"satiated" => world.cat.hungry = false,
|
||||
"hungry" => world.cat.hungry = true,
|
||||
"satiated" => world.cat.hungry = false,
|
||||
_ => unreachable!(),
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
use revsqrt::*;
|
||||
|
||||
use cucumber::{given, then, when, World};
|
||||
use rand;
|
||||
|
||||
|
@ -11,7 +9,7 @@ pub struct NumWorld {
|
|||
|
||||
// is n about the same as m?
|
||||
fn about_same(n: f32, m: f32) -> bool {
|
||||
(n - m)*1000f32 < 1f32
|
||||
(n - m) * 1000f32 < 1f32
|
||||
}
|
||||
|
||||
// Steps are defined with `given`, `when` and `then` attributes.
|
||||
|
|
Loading…
Reference in New Issue