aboutsummaryrefslogtreecommitdiff
path: root/tests/ref.rs
diff options
context:
space:
mode:
authorJoe Wilm <joe@jwilm.com>2016-11-19 18:12:04 -0800
committerJoe Wilm <joe@jwilm.com>2016-11-19 21:34:22 -0800
commit0dfba3018115bb3b7c0e93add421e2f8f1454126 (patch)
tree4f60c32a0c16280ea8efcdce03b19fb95e32ef91 /tests/ref.rs
parent66dbd29cd194a4c84f796f32827429895c2a3bba (diff)
downloadalacritty-0dfba3018115bb3b7c0e93add421e2f8f1454126.tar.gz
alacritty-0dfba3018115bb3b7c0e93add421e2f8f1454126.zip
Add a number of simple ref-tests
Also adds a feature `err-println` for enabling `err_println!` printing.
Diffstat (limited to 'tests/ref.rs')
-rw-r--r--tests/ref.rs11
1 files changed, 8 insertions, 3 deletions
diff --git a/tests/ref.rs b/tests/ref.rs
index 029bf91e..f17de6c7 100644
--- a/tests/ref.rs
+++ b/tests/ref.rs
@@ -69,10 +69,15 @@ mod reference {
($( $name:ident ),*) => {
$(
ref_test! { $name }
- ),*
- }
+ )*
+ };
}
// Ref tests!
- ref_test! { ll }
+ ref_test! {
+ ll,
+ vim_simple_edit,
+ tmux_htop,
+ tmux_git_log
+ }
}