Añade plugin Redmine Git Hosting 4.0.2

This commit is contained in:
Manuel Cillero 2020-12-05 13:57:05 +01:00
parent 472cb1ea76
commit bdd66d941f
494 changed files with 36768 additions and 0 deletions

View file

@ -0,0 +1,51 @@
unless ENV['DISABLE_COVERAGE'] == 'true'
require 'simplecov'
## Start Simplecov
SimpleCov.start 'rails' do
add_group 'Redmine Git Hosting', 'plugins/redmine_git_hosting'
end
end
## Load Redmine App
ENV['RAILS_ENV'] = 'test'
require File.expand_path(File.dirname(__FILE__) + '/../config/environment')
require 'rspec/rails'
## Load FactoryBots factories
Dir[Rails.root.join('plugins/*/spec/factories/**/*.rb')].each { |f| require f }
Dir[Rails.root.join('plugins/*/spec/support/**/*.rb')].each { |f| require f }
## Configure RSpec
RSpec.configure do |config|
config.include FactoryBot::Syntax::Methods
config.infer_spec_type_from_file_location!
config.color = true
config.fail_fast = false
config.expect_with :rspec do |c|
c.syntax = :expect
end
config.before(:suite) do
DatabaseCleaner.clean_with(:truncation)
end
config.before(:each) do
DatabaseCleaner.strategy = :transaction
end
config.before(:each) do
DatabaseCleaner.start
end
config.after(:each) do
DatabaseCleaner.clean
end
end
# Disable Test::Unit automatic runner
Test::Unit::AutoRunner.need_auto_run = false if defined?(Test::Unit::AutoRunner)