Sha256: c7fd8087607981c27e87261c0edafae417f17385f66f1c95c33d98edded79b64

Contents?: true

Size: 659 Bytes

Versions: 7

Compression:

Stored size: 659 Bytes

Contents

require 'bundler/setup'
require 'awesome_print'
Bundler.setup

require 'coveralls'
Coveralls.wear!

require 'light_form'
Dir['./spec/support/**/*.rb'].sort.each { |f| require f }

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
require 'guard/rubocop'

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
light_form-0.0.7 spec/spec_helper.rb
light_form-0.0.6 spec/spec_helper.rb
light_form-0.0.5 spec/spec_helper.rb
light_form-0.0.4 spec/spec_helper.rb
light_form-0.0.3 spec/spec_helper.rb
light_form-0.0.2 spec/spec_helper.rb
light_form-0.0.1 spec/spec_helper.rb