Sha256: fdaf30d82ed66878d621f6c6b8571a936aea137e8085e1b45cf9b33f1123c493

Contents?: true

Size: 521 Bytes

Versions: 4

Compression:

Stored size: 521 Bytes

Contents

# Configure Rails Envinronment
ENV["RAILS_ENV"] = "test"

require 'shortener'
require File.expand_path("../dummy/config/environment.rb",  __FILE__)
require 'rspec/rails'
require 'shoulda/matchers'
require 'byebug'
require 'faker'

Rails.backtrace_cleaner.remove_silencers!

Shoulda::Matchers.configure do |config|
  config.integrate do |with|
    with.test_framework :rspec
    with.library :rails
  end
end

# Run any available migration
ActiveRecord::Migrator.migrate File.expand_path("../dummy/db/migrate/", __FILE__)

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
shortener-0.6.2 spec/spec_helper.rb
shortener-0.6.1 spec/spec_helper.rb
shortener-0.5.6 spec/spec_helper.rb
shortener-0.5.5 spec/spec_helper.rb