Sha256: 4d72ba248077f2256f23439a5a5ac8a65b9b118ecdcbc9e4a92aa2654fe3bd3c

Contents?: true

Size: 1.55 KB

Versions: 9

Compression:

Stored size: 1.55 KB

Contents

require 'simplecov'
require 'coveralls'

SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
  SimpleCov::Formatter::HTMLFormatter,
  Coveralls::SimpleCov::Formatter,
]
SimpleCov.start do
  add_filter File.dirname(__FILE__)
end

require 'faml'

module RenderSpecHelper
  if ENV['GENERATE_INCOMPATIBILITIES'] == '1'
    require_relative 'support/incompatibilities_generator'

    def render_string(str, options = {})
      eval(Faml::Engine.new(options).call(str)).tap do |html|
        IncompatibilitiesGenerator.instance.record(str, options, html, RSpec.current_example)
      end
    rescue => e
      IncompatibilitiesGenerator.instance.record(str, options, e, RSpec.current_example)
      raise e
    end
  else
    def render_string(str, options = {})
      eval(Faml::Engine.new(options).call(str))
    end
  end
end

RSpec.configure do |config|
  config.expect_with :rspec do |expectations|
    expectations.include_chain_clauses_in_custom_matcher_descriptions = true
  end

  config.mock_with :rspec do |mocks|
    mocks.verify_partial_doubles = true
  end

  config.filter_run :focus
  config.run_all_when_everything_filtered = true

  config.disable_monkey_patching!

  if config.files_to_run.one?
    config.default_formatter = 'doc'
  end

  if ENV['TRAVIS']
    config.profile_examples = 10
  end

  config.order = :random

  Kernel.srand config.seed

  config.include(RenderSpecHelper, type: :render)

  if ENV['GENERATE_INCOMPATIBILITIES'] == '1'
    config.after :suite do
      IncompatibilitiesGenerator.instance.write_to('incompatibilities')
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
faml-0.3.5 spec/spec_helper.rb
faml-0.3.4 spec/spec_helper.rb
faml-0.3.3 spec/spec_helper.rb
faml-0.3.2 spec/spec_helper.rb
faml-0.3.1 spec/spec_helper.rb
faml-0.3.0 spec/spec_helper.rb
faml-0.2.16 spec/spec_helper.rb
faml-0.2.15 spec/spec_helper.rb
faml-0.2.14 spec/spec_helper.rb