summaryrefslogtreecommitdiff
path: root/tasks
diff options
context:
space:
mode:
authorMatthias Hecker <mail@apoc.cc>2020-03-29 12:46:43 +0200
committerMatthias Hecker <mail@apoc.cc>2020-03-29 12:46:43 +0200
commitb047b669c3426afebf9f6397a56cb3e7c0beb366 (patch)
treeed68361ba975243c20b3c6f24b25f4699fcf30c3 /tasks
parent8dc14bf88cbf38496aa21c2c17e42b211e7e1278 (diff)
test: small changes and fixes to existing tests
Diffstat (limited to 'tasks')
-rw-r--r--tasks/test.rake8
1 files changed, 8 insertions, 0 deletions
diff --git a/tasks/test.rake b/tasks/test.rake
new file mode 100644
index 00000000..b7939f71
--- /dev/null
+++ b/tasks/test.rake
@@ -0,0 +1,8 @@
+require "rake/testtask.rb"
+require 'rake'
+
+Rake::TestTask.new do |t|
+ t.libs << "test"
+ t.test_files = FileList['test/test_*.rb']
+ t.verbose = true
+end