diff options
| author | Tom Black <[email protected]> | 2015-11-13 00:29:18 -0500 |
|---|---|---|
| committer | Tom Black <[email protected]> | 2015-11-13 00:29:18 -0500 |
| commit | 2e9601e22e7efe53cf4c879224a830d961213edf (patch) | |
| tree | 8e1d9b3c3301b1ed78303943f56744a6a0a67d98 /Rakefile | |
| parent | 7a96ea1932a7d9a4dd4392bfad1f60c5beb06c33 (diff) | |
| download | ruby2d-2e9601e22e7efe53cf4c879224a830d961213edf.tar.gz ruby2d-2e9601e22e7efe53cf4c879224a830d961213edf.zip | |
Updating interactive tests
Diffstat (limited to 'Rakefile')
| -rw-r--r-- | Rakefile | 15 |
1 files changed, 11 insertions, 4 deletions
@@ -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 |
