forked from nesquena/rabl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
50 lines (41 loc) · 1.45 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
include Rake::DSL
require 'bundler'
Bundler::GemHelper.install_tasks
require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
test.libs << 'lib' << 'test'
test.pattern = 'test/*_test.rb'
test.warning = true
test.verbose = true
test.ruby_opts = ['-rubygems']
end
# Running integration tests
# rake test:clean
# rake test:stup
# rake test:full
fixture_list = "{padrino_test,sinatra_test,rails2,rails3,rails3_2}"
desc "Clean up the fixtures being tested by cleaning and installing dependencies"
task "test:clean" do
Dir[File.dirname(__FILE__) + "/fixtures/#{fixture_list}"].each do |fixture|
puts "\n*** Cleaning up for #{File.basename(fixture)} tests ***\n"
puts `cd #{fixture}; rm Gemfile.lock`
end
end
desc "Prepares the fixtures being tested by installing dependencies"
task "test:setup" do
Dir[File.dirname(__FILE__) + "/fixtures/#{fixture_list}"].each do |fixture|
puts "\n*** Setting up for #{File.basename(fixture)} tests ***\n"
`export BUNDLE_GEMFILE=#{fixture}/Gemfile` if ENV['TRAVIS']
puts `cd #{fixture}; mkdir -p tmp/cache; bundle install;`
end
end
desc "Executes the fixture tests"
task "test:fixtures" do
Dir[File.dirname(__FILE__) + "/fixtures/#{fixture_list}"].each do |fixture|
puts "\n*** Running tests for #{File.basename(fixture)}... ***\n"
puts `cd #{fixture}; bundle check; bundle exec rake test:rabl`
end
end
task "test:full" => [:test, "test:fixtures"]
desc "Run tests for rabl"
task :default => :test