summaryrefslogtreecommitdiffhomepage
path: root/Rakefile
diff options
context:
space:
mode:
authorTom Black <[email protected]>2015-11-13 00:29:18 -0500
committerTom Black <[email protected]>2015-11-13 00:29:18 -0500
commit2e9601e22e7efe53cf4c879224a830d961213edf (patch)
tree8e1d9b3c3301b1ed78303943f56744a6a0a67d98 /Rakefile
parent7a96ea1932a7d9a4dd4392bfad1f60c5beb06c33 (diff)
downloadruby2d-2e9601e22e7efe53cf4c879224a830d961213edf.tar.gz
ruby2d-2e9601e22e7efe53cf4c879224a830d961213edf.zip
Updating interactive tests
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile15
1 files changed, 11 insertions, 4 deletions
diff --git a/Rakefile b/Rakefile
index e513ad5..140691b 100644
--- a/Rakefile
+++ b/Rakefile
@@ -25,13 +25,20 @@ task :build do
system "gem install ruby2d-0.0.0.gem --local" # --verbose
end
-
-desc "Run Testcard"
+desc "Run testcard"
task :testcard do
- Rake::Task['build'].invoke
- system '( cd tests/ ; ruby testcard.rb )'
+ run_test 'testcard'
end
+desc "Run input"
+task :input do
+ run_test 'input'
+end
+
+desc "Run controller"
+task :controller do
+ run_test 'controller'
+end
desc "Test and build"
task :all do