2017-10-30 01:44:23 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
ENV['RAILS_ENV'] ||= 'test'
|
|
|
|
|
|
|
|
require 'active_record/railtie'
|
2018-02-06 19:56:23 +00:00
|
|
|
require 'mysql2'
|
2017-10-30 01:44:23 +00:00
|
|
|
require 'pry-byebug'
|
|
|
|
require 'rating'
|
|
|
|
|
2018-02-06 19:56:23 +00:00
|
|
|
client = Mysql2::Client.new(host: :localhost, username: :root)
|
|
|
|
|
|
|
|
client.query 'DROP DATABASE rating_test;'
|
|
|
|
client.query 'CREATE DATABASE rating_test;'
|
|
|
|
|
|
|
|
ActiveRecord::Base.establish_connection adapter: :mysql2, database: :rating_test, username: :root
|
2017-10-30 01:44:23 +00:00
|
|
|
|
|
|
|
Dir[File.expand_path('support/**/*.rb', __dir__)].each { |file| require file }
|