aboutsummaryrefslogtreecommitdiff
path: root/tests/tutorial_steps.rs
diff options
context:
space:
mode:
authorMelody Horn / boringcactus <melody@boringcactus.com>2021-06-13 19:35:58 -0600
committerMelody Horn / boringcactus <melody@boringcactus.com>2021-06-13 19:35:58 -0600
commit75e5e5f857b50a0eedbde84bcb10035479fc4571 (patch)
treef85ad816f176e244a4fdfc75b621af6170e4d7a8 /tests/tutorial_steps.rs
parent311b49a2fdd97b8b870dbaccccb55058ee0207c8 (diff)
downloadtosin-75e5e5f857b50a0eedbde84bcb10035479fc4571.tar.gz
tosin-75e5e5f857b50a0eedbde84bcb10035479fc4571.zip
start testing tutorial workflow
Diffstat (limited to 'tests/tutorial_steps.rs')
-rw-r--r--tests/tutorial_steps.rs13
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");
+}