summaryrefslogtreecommitdiff
path: root/.autotest
diff options
context:
space:
mode:
Diffstat (limited to '.autotest')
-rw-r--r--.autotest18
1 files changed, 0 insertions, 18 deletions
diff --git a/.autotest b/.autotest
deleted file mode 100644
index ac7a24c..0000000
--- a/.autotest
+++ /dev/null
@@ -1,18 +0,0 @@
-require "autotest/restart"
-require 'rbconfig'
-
-Autotest.add_hook :initialize do |at|
- at.find_directories = ARGV unless ARGV.empty?
- at.testlib = "minitest/autorun"
-end
-
-Autotest.add_hook :run_command do |at|
- at.unit_diff = 'cat'
- system "ruby -S rake compile"
-end
-
-Autotest.add_hook :ran_command do |at|
- File.open('/tmp/autotest.txt', 'wb') { |f|
- f.write(at.results.join)
- }
-end