aboutsummaryrefslogtreecommitdiffstats
path: root/Guardfile
diff options
context:
space:
mode:
Diffstat (limited to 'Guardfile')
-rw-r--r--Guardfile9
1 files changed, 0 insertions, 9 deletions
diff --git a/Guardfile b/Guardfile
deleted file mode 100644
index 9e48349..0000000
--- a/Guardfile
+++ /dev/null
@@ -1,9 +0,0 @@
-# frozen-string-literal: true
-
-guard :minitest, env: { "SKIP_COVERAGE" => true } do
- # with Minitest::Unit
- watch(%r{^test/(.*)\/?test_(.*)\.rb$})
- watch(%r{^lib/(.*/)?([^/]+)\.rb$}) { |m| ["test/#{m[1]}test_#{m[2]}.rb", "test/#{m[1]}#{m[2]}"] }
- watch(%r{^test/test_helper\.rb$}) { "test" }
- watch(%r{^test/utils/.*\.rb}) { "test" }
-end