From eb7cfb47d67226d4f255826852bc487e07cf8f87 Mon Sep 17 00:00:00 2001 From: Torsten Ruger Date: Sun, 10 Sep 2017 22:54:36 +0300 Subject: [PATCH] fix guard file to pick up send tests correctly --- Guardfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Guardfile b/Guardfile index cde222eb..2fb2bb58 100644 --- a/Guardfile +++ b/Guardfile @@ -22,5 +22,7 @@ guard :minitest do # with Minitest::Unit # Vool to_mom compile process + # Ruby to vool compile process watch(%r{^lib/vool/statements/(.+)_statement.rb}) { |m| [ Dir["test/vool/to_mom/test_#{m[1]}*.rb"] , "test/vool/statements/test_#{m[1]}.rb"] } + watch(%r{^lib/vool/statements/send_statement.rb}) { + [ Dir["test/vool/to_mom/send/test_*.rb"] , "test/vool/statements/test_send_statement.rb"] } end