about summary refs log tree commit diff
path: root/snippets/rust-mode/tests
diff options
context:
space:
mode:
authorGriffin Smith <root@gws.fyi>2019-07-09T21·50-0400
committerGriffin Smith <root@gws.fyi>2019-07-09T21·50-0400
commit23b179ad1d3d2e07c114741dffc50a8343f0a7a6 (patch)
tree46a6a982b7de4710ddf35ffdf2439d6291924d53 /snippets/rust-mode/tests
parenta3eb6846b3eeb739bce26a7b92b6a634688e57af (diff)
A bunch of new snippets
Diffstat (limited to 'snippets/rust-mode/tests')
-rw-r--r--snippets/rust-mode/tests9
1 files changed, 9 insertions, 0 deletions
diff --git a/snippets/rust-mode/tests b/snippets/rust-mode/tests
new file mode 100644
index 0000000000..0a476ab586
--- /dev/null
+++ b/snippets/rust-mode/tests
@@ -0,0 +1,9 @@
+# key: tests
+# name: test module
+# --
+#[cfg(test)]
+mod ${1:tests} {
+    use super::*;
+
+    $0
+}