Sha256: 1913ceac6d9f82efb86cf81ddac2b1821e03406eb2be7c072333b6bdefda65c1

Contents?: true

Size: 604 Bytes

Versions: 1

Compression:

Stored size: 604 Bytes

Contents

require File.expand_path(File.dirname(__FILE__) + '/../lib/rendering_engine')
require 'rspec'
require 'ostruct'
require 'coveralls'
Coveralls.wear!

RSpec.configure do |config|
  config.filter_run :focus
  config.run_all_when_everything_filtered = true

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

  config.profile_examples = 10
  config.order = :random

  Kernel.srand config.seed

  config.expect_with :rspec do |expectations|
    expectations.syntax = :expect
  end

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rendering_engine-0.2.0 spec/spec_helper.rb