kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
118 lines
5.2 KiB
118 lines
5.2 KiB
#-- copyright
|
|
# OpenProject is a project management system.
|
|
# Copyright (C) 2012-2015 the OpenProject Foundation (OPF)
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License version 3.
|
|
#
|
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
|
# 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 doc/COPYRIGHT.rdoc for more details.
|
|
###
|
|
# This file was generated by the `rspec --init` command. Conventionally, all
|
|
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
|
# The generated `.rspec` file contains `--require spec_helper` which will cause
|
|
# this file to always be loaded, without a need to explicitly require it in any
|
|
# files.
|
|
#
|
|
# Given that it is always loaded, you are encouraged to keep this file as
|
|
# light-weight as possible. Requiring heavyweight dependencies from this file
|
|
# will add to the boot time of your test suite on EVERY test run, even for an
|
|
# individual file that may not need all of that loaded. Instead, consider making
|
|
# a separate helper file that requires the additional dependencies and performs
|
|
# the additional setup, and require it from the spec files that actually need
|
|
# it.
|
|
#
|
|
# The `.rspec` file also contains a few flags that are not defaults but that
|
|
# users commonly want.
|
|
#
|
|
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
|
|
|
# We currently require spec_helper here, since we loaded
|
|
# the environment at all times before and have no specs that may run outside
|
|
require_relative 'rails_helper'
|
|
|
|
RSpec.configure do |config|
|
|
config.expect_with :rspec do |expectations|
|
|
# This option will default to `true` in RSpec 4. It makes the `description`
|
|
# and `failure_message` of custom matchers include text for helper methods
|
|
# defined using `chain`
|
|
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
|
end
|
|
|
|
# rspec-mocks config goes here. You can use an alternate test double
|
|
# library (such as bogus or mocha) by changing the `mock_with` option here.
|
|
config.mock_with :rspec do |mocks|
|
|
mocks.verify_partial_doubles = false
|
|
end
|
|
|
|
# This option will default to `:apply_to_host_groups` in RSpec 4 (and will
|
|
# have no way to turn it off -- the option exists only for backwards
|
|
# compatibility in RSpec 3). It causes shared context metadata to be
|
|
# inherited by the metadata hash of host groups and examples, rather than
|
|
# triggering implicit auto-inclusion in groups with matching metadata.
|
|
config.shared_context_metadata_behavior = :apply_to_host_groups
|
|
|
|
# This allows you to limit a spec run to individual examples or groups
|
|
# you care about by tagging them with `:focus` metadata. When nothing
|
|
# is tagged with `:focus`, all examples get run. RSpec also provides
|
|
# aliases for `it`, `describe`, and `context` that include `:focus`
|
|
# metadata: `fit`, `fdescribe` and `fcontext`, respectively.
|
|
config.filter_run_when_matching :focus
|
|
|
|
# Allows RSpec to persist some state between runs in order to support
|
|
# the `--only-failures` and `--next-failure` CLI options. We recommend
|
|
# you configure your source control system to ignore this file.
|
|
config.example_status_persistence_file_path = "tmp/spec_examples.txt"
|
|
|
|
# Many RSpec users commonly either run the entire suite or an individual
|
|
# file, and it's useful to allow more verbose output when running an
|
|
# individual spec file.
|
|
if config.files_to_run.one?
|
|
# Use the documentation formatter for detailed output,
|
|
# unless a formatter has already been configured
|
|
# (e.g. via a command-line flag).
|
|
config.default_formatter = 'doc'
|
|
else
|
|
# Otherwise, use the Fuubar formatter if we're not on the CI
|
|
unless ENV['TEST_ENV_NUMBER'] || ENV['CI']
|
|
config.default_formatter = Fuubar
|
|
end
|
|
end
|
|
|
|
# Print the 10 slowest examples and example groups at the
|
|
# end of the spec run, to help surface which specs are running
|
|
# particularly slow.
|
|
config.profile_examples = 10
|
|
|
|
# Run specs in random order to surface order dependencies. If you find an
|
|
# order dependency and want to debug it, you can fix the order by providing
|
|
# the seed, which is printed after each run.
|
|
# --seed 1234
|
|
config.order = :random
|
|
|
|
# Use colored output
|
|
config.color = true
|
|
|
|
# Seed global randomization in this process using the `--seed` CLI option.
|
|
# Setting this allows you to use `--seed` to deterministically reproduce
|
|
# test failures related to randomization by passing the same `--seed` value
|
|
# as the one that triggered the failure.
|
|
Kernel.srand config.seed
|
|
end
|
|
|