mirror of
https://github.com/kaminari/kaminari.git
synced 2022-11-09 13:44:37 -05:00
804ff8c87c
There's no need to use the merged support from Coveralls since they already handle receiving data from multiple Travis builds and combining that.
38 lines
814 B
Ruby
38 lines
814 B
Ruby
require 'coveralls'
|
|
|
|
# Enable Coveralls
|
|
Coveralls.wear!
|
|
|
|
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
|
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
|
|
|
begin
|
|
require 'rails'
|
|
rescue LoadError
|
|
end
|
|
|
|
require 'bundler/setup'
|
|
Bundler.require
|
|
|
|
require 'capybara/rspec'
|
|
require 'database_cleaner'
|
|
|
|
# Simulate a gem providing a subclass of ActiveRecord::Base before the Railtie is loaded.
|
|
require 'fake_gem' if defined? ActiveRecord
|
|
|
|
if defined? Rails
|
|
require 'fake_app/rails_app'
|
|
|
|
require 'rspec/rails'
|
|
end
|
|
if defined? Sinatra
|
|
require 'spec_helper_for_sinatra'
|
|
end
|
|
|
|
# Requires supporting files with custom matchers and macros, etc,
|
|
# in ./support/ and its subdirectories.
|
|
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
|
|
|
|
RSpec.configure do |config|
|
|
config.mock_with :rr
|
|
end
|