Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

70 lines
2.2 KiB
Ruby
Raw Permalink Normal View History

#-- copyright
2020-01-15 11:31:26 +01:00
# OpenProject is an open source project management software.
# Copyright (C) the OpenProject GmbH
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 3.
#
2013-09-16 17:59:31 +02:00
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
2021-01-13 17:47:45 +01:00
# Copyright (C) 2006-2013 Jean-Philippe Lang
2013-09-16 17:59:31 +02:00
# Copyright (C) 2010-2013 the ChiliProject Team
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# See COPYRIGHT and LICENSE files for more details.
#++
2013-04-16 12:27:57 +02:00
# Run all core and plugins specs via
2014-10-30 16:39:02 +01:00
# rake spec_all
2013-04-16 12:27:57 +02:00
#
# Run plugins specs via
# rake spec_plugins
#
# A plugin must register for tests via config variable 'plugins_to_test_paths'
#
# e.g.
# class Engine < ::Rails::Engine
# initializer 'register_path_to_rspec' do |app|
# app.config.plugins_to_test_paths << self.root
# end
# end
#
2013-04-16 17:37:18 +02:00
begin
2014-11-03 22:13:00 +01:00
require "rspec/core/rake_task"
2013-04-16 12:27:57 +02:00
namespace :spec do
2014-11-03 22:13:00 +01:00
desc "Run core and plugin specs"
2018-06-22 08:23:39 +02:00
RSpec::Core::RakeTask.new(all: [:environment]) do |t|
2015-11-02 12:27:42 +01:00
t.pattern = [Rails.root.join("spec").to_s] + Plugins::LoadPathHelper.spec_load_paths
2013-04-16 12:27:57 +02:00
end
2014-11-03 22:13:00 +01:00
desc "Run plugin specs"
2018-06-22 08:23:39 +02:00
RSpec::Core::RakeTask.new(plugins: [:environment]) do |t|
2015-11-02 12:27:42 +01:00
t.pattern = Plugins::LoadPathHelper.spec_load_paths
# in case we want to run plugins' specs and there are none
# we exit with positive message
2015-11-02 12:27:42 +01:00
if t.pattern.empty?
puts
puts "##### There are no specs for OpenProject plugins to be run."
puts
exit(0)
end
end
end
2013-04-16 17:37:18 +02:00
rescue LoadError
end