diff options
Diffstat (limited to 'tests/tutorial_steps.rs')
| -rw-r--r-- | tests/tutorial_steps.rs | 13 | 
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/tutorial_steps.rs b/tests/tutorial_steps.rs new file mode 100644 index 0000000..5af6eb5 --- /dev/null +++ b/tests/tutorial_steps.rs @@ -0,0 +1,13 @@ +mod tutorial; + +use tutorial::*; + +#[test] +fn tutorial1() { +    step1("tutorial1"); +} + +#[test] +fn tutorial2() { +    step2("tutorial2"); +}  |