forked from drapergem/draper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
69 lines (54 loc) · 1.69 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
require 'rake'
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
def run_in_dummy_app(command)
success = system("cd spec/dummy && #{command}")
raise "#{command} failed" unless success
end
task "default" => "ci"
desc "Run all tests for CI"
task "ci" => "spec"
desc "Run all specs"
task "spec" => "spec:all"
namespace "spec" do
task "all" => ["draper", "generators", "integration"]
def spec_task(name)
desc "Run #{name} specs"
RSpec::Core::RakeTask.new(name) do |t|
t.pattern = "spec/#{name}/**/*_spec.rb"
end
end
spec_task "draper"
spec_task "generators"
desc "Run integration specs"
task "integration" => ["db:setup", "integration:all"]
namespace "integration" do
task "all" => ["development", "production", "test"]
["development", "production"].each do |environment|
task environment do
Rake::Task["spec:integration:run"].execute environment
end
end
task "run" do |t, environment|
puts "Running integration specs in #{environment}"
ENV["RAILS_ENV"] = environment
success = system("rspec spec/integration")
raise "Integration specs failed in #{environment}" unless success
end
task "test" do
puts "Running rake in dummy app"
ENV["RAILS_ENV"] = "test"
run_in_dummy_app "rake"
end
end
end
namespace "db" do
desc "Set up databases for integration testing"
task "setup" do
puts "Setting up databases"
run_in_dummy_app "rm -f db/*.sqlite3"
run_in_dummy_app "RAILS_ENV=development rake db:schema:load db:seed"
run_in_dummy_app "RAILS_ENV=production rake db:schema:load db:seed"
run_in_dummy_app "RAILS_ENV=test rake db:environment:set db:schema:load"
end
end