summaryrefslogtreecommitdiffhomepage
path: root/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
new file mode 100644
index 00000000..0193d816
--- /dev/null
+++ b/Rakefile
@@ -0,0 +1,11 @@
+task default: %w[test]
+
+task :test do
+ Dir["./tests/*.rb"].each do |test_file|
+ begin
+ ruby test_file
+ rescue
+ puts "FAILED #{test_file}!"
+ end
+ end
+end