2017-10-30 01:44:23 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rspec/core/rake_task'
|
|
|
|
|
|
|
|
RSpec::Core::RakeTask.new
|
|
|
|
|
|
|
|
task default: :spec
|
2018-02-14 16:43:26 +00:00
|
|
|
|
2018-03-01 20:50:49 +00:00
|
|
|
desc 'Runs tests with config enabled for extra scopes'
|
|
|
|
task :spec_config_with_extra_scopes do
|
2018-02-14 16:43:26 +00:00
|
|
|
directory_config = File.expand_path('config')
|
|
|
|
|
|
|
|
`mkdir -p #{directory_config}`
|
|
|
|
|
|
|
|
File.open(File.expand_path('config/rating.yml'), 'w+') do |file|
|
2018-03-01 20:50:49 +00:00
|
|
|
file.write %(
|
|
|
|
rating:
|
|
|
|
validations:
|
|
|
|
rate:
|
|
|
|
scope:
|
|
|
|
- author_type
|
|
|
|
- resource_id
|
|
|
|
- resource_type
|
|
|
|
- scopeable_id
|
|
|
|
- scopeable_type
|
|
|
|
- scope_1
|
|
|
|
- scope_2
|
|
|
|
)
|
2018-02-14 16:43:26 +00:00
|
|
|
end
|
|
|
|
|
2018-03-01 20:50:49 +00:00
|
|
|
ENV['CONFIG_ENABLED_WITH_EXTRA_SCOPES'] = 'true'
|
2018-02-14 16:43:26 +00:00
|
|
|
|
|
|
|
Rake::Task['spec'].invoke
|
|
|
|
|
2018-03-01 20:50:49 +00:00
|
|
|
FileUtils.rm_rf(directory_config)
|
2018-02-14 16:43:26 +00:00
|
|
|
end
|
2018-02-14 17:02:44 +00:00
|
|
|
|
2018-03-01 20:50:49 +00:00
|
|
|
desc 'Runs tests with config enabled'
|
|
|
|
task :spec_config do
|
|
|
|
directory_config = File.expand_path('config')
|
|
|
|
|
|
|
|
`mkdir -p #{directory_config}`
|
|
|
|
|
|
|
|
File.open(File.expand_path('config/rating.yml'), 'w+') do |file|
|
|
|
|
file.write "rating:\n rate_table: 'reviews'\n rating_table: 'review_ratings'"
|
|
|
|
end
|
|
|
|
|
|
|
|
ENV['CONFIG_ENABLED'] = 'true'
|
|
|
|
|
2018-02-14 17:02:44 +00:00
|
|
|
Rake::Task['spec'].invoke
|
|
|
|
|
2018-03-01 20:50:49 +00:00
|
|
|
FileUtils.rm_rf(directory_config)
|
2018-02-14 17:02:44 +00:00
|
|
|
end
|