Sha256: eeba23a5a2f33a39242b48009220795f3cb8c085453811716727f981e2818938

Contents?: true

Size: 553 Bytes

Versions: 6

Compression:

Stored size: 553 Bytes

Contents

require 'table_cloth'
require 'awesome_print'
require 'nokogiri'
require 'factory_girl'
require 'pry'
require 'simplecov'

if ENV["COVERAGE"] == "true"
  SimpleCov.start do
    add_filter "spec/support"
  end
end

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

FactoryGirl.find_definitions

ActionView::Base.send :include, TableClothViewMocks

RSpec.configure do |config|
  config.treat_symbols_as_metadata_keys_with_true_values = true
  config.run_all_when_everything_filtered = true
  config.filter_run :focus
  config.include ElementHelpers
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
table_cloth-0.4.2 spec/spec_helper.rb
table_cloth-0.4.1 spec/spec_helper.rb
table_cloth-0.4.0 spec/spec_helper.rb
table_cloth-0.3.2 spec/spec_helper.rb
table_cloth-0.3.1.alpha1 spec/spec_helper.rb
table_cloth-0.3.0.beta3 spec/spec_helper.rb