Sha256: 11aa7be83059b78bc12f29c323aa8d408f958c38328d6579d42f958cf5537cd1
Contents?: true
Size: 559 Bytes
Versions: 5
Compression:
Stored size: 559 Bytes
Contents
require 'bundler/gem_tasks' require 'rspec/core' require 'rspec/core/rake_task' require File.expand_path('spec/spec_helper.rb') task :default => :full_build desc "full build, run all the tests" task :full_build => [:unit,:acceptance] desc "Run unit tests" RSpec::Core::RakeTask.new(:unit) do |t| t.pattern = ['spec/*_spec.rb'] t.rspec_opts = ['--options', "spec/spec.opts"] end desc "Run acceptance tests" RSpec::Core::RakeTask.new(:acceptance) do |t| t.pattern = ['spec/acceptance/*_spec.rb'] t.rspec_opts = ['--options', "spec/spec.opts"] end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
gatling-1.1.3 | Rakefile |
gatling-1.1.2 | Rakefile |
gatling-1.1.1 | Rakefile |
gatling-1.1.0 | Rakefile |
gatling-1.0.9 | Rakefile |