1
0
Fork 0
mirror of https://github.com/rest-client/rest-client.git synced 2022-11-09 13:49:40 -05:00

Move rspec options to .rspec file; add randomization

(cherry picked from commit 6bd7793c3c)

Conflicts:
	Rakefile
This commit is contained in:
Larry Gilbert 2013-03-15 20:57:30 -07:00
parent 16e7365b12
commit af25689658
2 changed files with 1 additions and 2 deletions

1
.rspec Normal file
View file

@ -0,0 +1 @@
--colour --format progress --order random

View file

@ -11,13 +11,11 @@ task :spec => ["spec:unit", "spec:integration"]
desc "Run unit specs"
Spec::Rake::SpecTask.new('spec:unit') do |t|
t.spec_opts = ['--colour --format progress --loadby mtime --reverse']
t.spec_files = FileList['spec/*_spec.rb']
end
desc "Run integration specs"
Spec::Rake::SpecTask.new('spec:integration') do |t|
t.spec_opts = ['--colour --format progress --loadby mtime --reverse']
t.spec_files = FileList['spec/integration/*_spec.rb']
end