Sha256: 71395eac3cab668d9b5ef8d439e2c2ff4ca5012fe0f2e44b722d16c41f08a002

Contents?: true

Size: 1.34 KB

Versions: 2

Compression:

Stored size: 1.34 KB

Contents

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

require File.expand_path("../dummy/config/environment.rb",  __FILE__)
require "rails/test_help"
require "rspec/rails"

ActionMailer::Base.delivery_method = :test
ActionMailer::Base.perform_deliveries = true
ActionMailer::Base.default_url_options[:host] = "test.com"

Rails.backtrace_cleaner.remove_silencers!

# Configure capybara for integration testing
require "capybara/rails"
Capybara.default_driver   = :rack_test
Capybara.default_selector = :css

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

# Load support files
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }

RSpec.configure do |config|
  # Remove this line if you don't want RSpec's should and should_not
  # methods or matchers
  require 'rspec/expectations'
  config.include RSpec::Matchers

  # == Mock Framework
  config.mock_with :rspec
end


#$:.unshift(File.join(File.expand_path(File.dirname(__FILE__)), "../lib"))
#
#require 'active_record'
#require 'fancygrid/query_generator'
#
#class Ticket < ActiveRecord::Base
#  belongs_to :project
#end
#class Project < ActiveRecord::Base
#  has_many :tickets
#end
#
#class User < ActiveRecord::Base
#  has_and_belongs_to_many :roles
#end
#class Role < ActiveRecord::Base
#  has_and_belongs_to_many :users
#end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fancygrid-1.1.0 spec/spec_helper.rb
fancygrid-1.0.0 spec/spec_helper.rb