diff options
| author | realtradam <[email protected]> | 2021-06-12 00:57:04 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2021-06-12 00:57:04 -0400 |
| commit | 8dcacf9e69214f66be09c120ba474b848047cb53 (patch) | |
| tree | 43692e58a42632fd5fe069bcc3ab4bab96340ece /Rakefile | |
| parent | 3ad8d2531329c1696a2bf86db8db9237309281ab (diff) | |
| download | FelECS-8dcacf9e69214f66be09c120ba474b848047cb53.tar.gz FelECS-8dcacf9e69214f66be09c120ba474b848047cb53.zip | |
unit testing and cleanup
Diffstat (limited to 'Rakefile')
| -rw-r--r-- | Rakefile | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -1,5 +1,6 @@ -require 'rake/testtask' +#require 'rake/testtask' +require 'rspec/core/rake_task' require 'yard' require_relative './codeclimate/export-coverage' @@ -21,6 +22,8 @@ YARD::Rake::YardocTask.new do |t| t.stats_options = ['--list-undoc'] end -Rake::TestTask.new do |t| - t.pattern = "tests/**/*_test.rb" -end +#Rake::TestTask.new do |t| +# t.pattern = "tests/**/*_test.rb" +#end + +RSpec::Core::RakeTask.new :spec |
