Sha256: 81e91ba1c8e05a978048b9532f27f1bff6c3315823d2ec1a2f60f08459746f0c

Contents?: true

Size: 750 Bytes

Versions: 7

Compression:

Stored size: 750 Bytes

Contents

if ENV['CODECLIMATE_REPO_TOKEN']
  require "codeclimate-test-reporter"
  CodeClimate::TestReporter.start
end

require 'sqlite3'
require 'popular'

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

ActiveRecord::Base.establish_connection adapter: "sqlite3", database: ":memory:"

ActiveRecord::Schema.define version: 1 do

  create_table :friendships do |t|
    t.references :popular_model, polymorphic: true,  null: false
    t.references :friend, polymorphic: true, null: false
  end

  create_table :popular_models

end

RSpec.configure do |config|
  config.order = 'random'
end

def clean_database
  [PopularModel, Popular::Friendship].each do |model|
    ActiveRecord::Base.connection.execute "DELETE FROM #{model.table_name}"
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
popular-0.6.0 spec/spec_helper.rb
popular-0.5.1 spec/spec_helper.rb
popular-0.5.0 spec/spec_helper.rb
popular-0.4.0 spec/spec_helper.rb
popular-0.3.2 spec/spec_helper.rb
popular-0.3.1 spec/spec_helper.rb
popular-0.3.0 spec/spec_helper.rb