Fix spec helper
This commit is contained in:
parent
629f8b557f
commit
449aa128bb
1 changed files with 29 additions and 26 deletions
|
@ -19,16 +19,6 @@
|
||||||
# This should be on the top of the file.
|
# This should be on the top of the file.
|
||||||
require 'simplecov'
|
require 'simplecov'
|
||||||
|
|
||||||
# rubocop:disable Style/BlockComments
|
|
||||||
|
|
||||||
require 'lita-tox'
|
|
||||||
require 'lita/rspec'
|
|
||||||
|
|
||||||
# A compatibility mode is provided for older plugins upgrading from Lita 3.
|
|
||||||
# Since this plugin was generated with Lita 4, the compatibility mode
|
|
||||||
# should be left disabled.
|
|
||||||
Lita.version_3_compatibility_mode = false
|
|
||||||
|
|
||||||
# This file was generated by the `rspec --init` command. Conventionally, all
|
# This file was generated by the `rspec --init` command. Conventionally, all
|
||||||
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
||||||
# The generated `.rspec` file contains `--require spec_helper` which will cause
|
# The generated `.rspec` file contains `--require spec_helper` which will cause
|
||||||
|
@ -43,10 +33,20 @@ Lita.version_3_compatibility_mode = false
|
||||||
# the additional setup, and require it from the spec files that actually need
|
# the additional setup, and require it from the spec files that actually need
|
||||||
# it.
|
# 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
|
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
||||||
|
|
||||||
|
require 'timeout'
|
||||||
|
require 'faker'
|
||||||
|
|
||||||
|
require 'lita/rspec'
|
||||||
|
|
||||||
|
require 'lita-tox'
|
||||||
|
|
||||||
|
# A compatibility mode is provided for older plugins upgrading from Lita 3.
|
||||||
|
# Since this plugin was generated with Lita 4, the compatibility mode
|
||||||
|
# should be left disabled.
|
||||||
|
Lita.version_3_compatibility_mode = false
|
||||||
|
|
||||||
RSpec.configure do |config|
|
RSpec.configure do |config|
|
||||||
# rspec-expectations config goes here. You can use an alternate
|
# rspec-expectations config goes here. You can use an alternate
|
||||||
# assertion/expectation library such as wrong or the stdlib/minitest
|
# assertion/expectation library such as wrong or the stdlib/minitest
|
||||||
|
@ -71,26 +71,30 @@ RSpec.configure do |config|
|
||||||
mocks.verify_partial_doubles = true
|
mocks.verify_partial_doubles = true
|
||||||
end
|
end
|
||||||
|
|
||||||
# The settings below are suggested to provide a good initial experience
|
# This option will default to `:apply_to_host_groups` in RSpec 4 (and will
|
||||||
# with RSpec, but feel free to customize to your heart's content.
|
# have no way to turn it off -- the option exists only for backwards
|
||||||
=begin
|
# compatibility in RSpec 3). It causes shared context metadata to be
|
||||||
# These two settings work together to allow you to limit a spec run
|
# inherited by the metadata hash of host groups and examples, rather than
|
||||||
# to individual examples or groups you care about by tagging them with
|
# triggering implicit auto-inclusion in groups with matching metadata.
|
||||||
# `:focus` metadata. When nothing is tagged with `:focus`, all examples
|
config.shared_context_metadata_behavior = :apply_to_host_groups
|
||||||
# get run.
|
|
||||||
config.filter_run :focus
|
# This allows you to limit a spec run to individual examples or groups
|
||||||
config.run_all_when_everything_filtered = true
|
# 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
|
# Allows RSpec to persist some state between runs in order to support
|
||||||
# the `--only-failures` and `--next-failure` CLI options. We recommend
|
# the `--only-failures` and `--next-failure` CLI options. We recommend
|
||||||
# you configure your source control system to ignore this file.
|
# you configure your source control system to ignore this file.
|
||||||
config.example_status_persistence_file_path = "spec/examples.txt"
|
config.example_status_persistence_file_path = 'spec/examples.txt'
|
||||||
|
|
||||||
# Limits the available syntax to the non-monkey patched syntax that is
|
# Limits the available syntax to the non-monkey patched syntax that is
|
||||||
# recommended. For more details, see:
|
# recommended. For more details, see:
|
||||||
# - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
|
# - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
|
||||||
# - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
|
# - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
|
||||||
# - http://myronmars.to/n/dev-blog/2014/05/notable-changes-in-rspec-3#new__config_option_to_disable_rspeccore_monkey_patching
|
# - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
|
||||||
config.disable_monkey_patching!
|
config.disable_monkey_patching!
|
||||||
|
|
||||||
# This setting enables warnings. It's recommended, but in some cases may
|
# This setting enables warnings. It's recommended, but in some cases may
|
||||||
|
@ -123,5 +127,4 @@ RSpec.configure do |config|
|
||||||
# test failures related to randomization by passing the same `--seed` value
|
# test failures related to randomization by passing the same `--seed` value
|
||||||
# as the one that triggered the failure.
|
# as the one that triggered the failure.
|
||||||
Kernel.srand config.seed
|
Kernel.srand config.seed
|
||||||
=end
|
|
||||||
end
|
end
|
||||||
|
|
Reference in a new issue