Sha256: 4b0ea93b19feb859bc8248d52dacf507fe46152f4b59855a6fe50b898710f06b

Contents?: true

Size: 785 Bytes

Versions: 3

Compression:

Stored size: 785 Bytes

Contents

require 'simplecov'

require 'coveralls'
Coveralls.wear!

SimpleCov.start 'rails' do
  SimpleCov.formatters = [
    SimpleCov::Formatter::HTMLFormatter,
    Coveralls::SimpleCov::Formatter
  ]

  add_filter '/spec/'
end

require 'lita-wit'
Wit.logger.level = Logger::WARN

require 'lita/rspec'
require 'lita_config'

# 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

require 'vcr'
require 'webmock/rspec'

VCR.configure do |config|
  config.cassette_library_dir = 'spec/support/vcr_cassettes'
  config.ignore_localhost = true
  config.hook_into :webmock
  config.configure_rspec_metadata!
end

SESSION_ID = 'unique-1234'

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
lita-wit-0.1.2 spec/spec_helper.rb
lita-wit-0.1.1 spec/spec_helper.rb
lita-wit-0.1.0 spec/spec_helper.rb