forked from 3scale/porta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
57 lines (47 loc) · 1.4 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
require File.expand_path('../config/application', __FILE__)
# Workaround for https://github.com/ruby/rake/issues/116
# until we upgrade rspec
Rake::TaskManager.module_eval do
alias_method :last_comment, :last_description
end
System::Application.load_tasks
begin
require 'thinking_sphinx/deltas/datetime_delta/tasks'
rescue LoadError
end
require 'rails/test_unit/runner'
class Rails::TestUnit::Runner
class << self
prepend(Module.new do
# This is a private method, expect this to be broken in the future
def extract_filters(argv)
multitests = argv.flat_map { |patterns| patterns.strip.split(/\s+/) }.compact
puts "TEST='"
multitests.each do |file|
print "\t", file, "\n"
end
puts "'"
super(multitests)
end
end)
end
end
namespace :test do
test_groups = {
integration: FileList["test/{integration}/**/*_test.rb"],
functional: FileList["test/{functional}/**/*_test.rb"],
}
test_groups[:unit] = FileList['test/**/*_test.rb'].exclude(*test_groups.values).exclude('test/{performance,remote,support}/**/*')
namespace :files do
test_groups.each do |name,file_list|
desc "Print test files for #{name} test group"
task name do
puts file_list
end
end
end
end
Rake::Task['db:test:load'].enhance do
Rake::Task['multitenant:test:triggers'].invoke
Rake::Task['db:test:procedures'].invoke
end