diff options
| author | Teddy Wing | 2017-04-29 18:16:22 +0200 | 
|---|---|---|
| committer | Teddy Wing | 2017-04-29 19:15:46 +0200 | 
| commit | 58219f1166a28d590ba38249307ea4361343f96c (patch) | |
| tree | 4e3b168bb2737b336451c80d9bbe2ab162725e71 | |
| parent | 11a36c450eb70f31e3c6bd107ee66320d10aed3b (diff) | |
| download | dbshell-rails-58219f1166a28d590ba38249307ea4361343f96c.tar.bz2 | |
Rakefile: Add TestTask
Make it easier for us to run our specs.
| -rw-r--r-- | Rakefile | 7 | 
1 files changed, 7 insertions, 0 deletions
| @@ -1 +1,8 @@  require 'bundler/gem_tasks' +require 'rake/testtask' + +Rake::TestTask.new do |t| +  t.libs << 'spec' +  t.test_files = FileList['spec/**/*_spec.rb'] +  t.verbose = true +end | 
