From 82aaee90ce8ad7076e657f48b94ec58e3e981540 Mon Sep 17 00:00:00 2001 From: Jorge Bucaran Date: Sat, 16 Feb 2019 14:04:00 +0900 Subject: [PATCH] Add conditional tests --- test/conditional.fish | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 test/conditional.fish diff --git a/test/conditional.fish b/test/conditional.fish new file mode 100644 index 0000000..72d94ec --- /dev/null +++ b/test/conditional.fish @@ -0,0 +1,8 @@ +@mesg $current_filename + +if true + @test "true" $status -eq 0 +end +if false + @test "never runs" $status -eq 1 +end