Sha256: 9479fc6de754cd5efb38e6ecfd5ddaea1e191a5566ec3c23652de5d917662439
Contents?: true
Size: 400 Bytes
Versions: 3
Compression:
Stored size: 400 Bytes
Contents
require 'rake' require 'rake/testtask' require 'rspec/core/rake_task' desc 'Default: run tests.' task default: :test namespace :test do Rake::TestTask.new(:integration) do |t| t.libs += %w(lib test) t.pattern = 'test/integration/**/*_test.rb' t.verbose = true end end RSpec::Core::RakeTask.new(:spec) desc 'Test the memory_test_fix plugin.' task test: [:spec, 'test:integration']
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
memory_test_fix-1.3.0 | Rakefile |
memory_test_fix-1.2.2 | Rakefile |
memory_test_fix-1.2.1 | Rakefile |