Skip to content

Commit e9d6f8b

Browse files
committed
WIP
1 parent 13cd210 commit e9d6f8b

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

Rakefile

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,11 +215,19 @@ namespace :test do
215215
remove_files("Gemfile.lock")
216216
end
217217
desc "Resolve and install dependencies for unit and integration test"
218-
task :install => ci_install
218+
task :install do
219+
Array(ci_install).each do |task|
220+
Rake::Task[task].invoke
221+
end
222+
end
219223
end
220224

221225
desc "Run the unit and integration test for all appraisals"
222-
task :ci => ci_task
226+
task :ci do
227+
Array(ci_task).each do |task|
228+
Rake::Task[task].invoke
229+
end
230+
end
223231
end
224232

225233
desc 'Default: run the unit and integration tests.'

test/test_apps/shared/engines/forum/test/test_helper.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Configure Rails Environment
22
ENV["RAILS_ENV"] = "test"
33

4+
require 'logger'
45
require File.expand_path("../dummy/config/environment.rb", __FILE__)
56
require "rails/test_help"
67

0 commit comments

Comments
 (0)