Sha256: ff778fdc43eee45adfba18e8a947609949e3683657142907d1d649a8cdcbf4e6

Contents?: true

Size: 777 Bytes

Versions: 6

Compression:

Stored size: 777 Bytes

Contents

require 'rubygems'
require 'activerecord'
require 'fileutils'
FileUtils.mkdir_p("tmp")

ActiveRecord::Base.logger = Logger.new("tmp/activerecord.log")
$:.unshift(File.join(File.dirname(__FILE__), "../lib"))

require 'activesupport'
require 'by_star'
require 'spec'

# Define time zone before loading test_helper
zone = "UTC"
Time.zone = zone
ActiveRecord::Base.default_timezone = zone

YAML::load_file(File.dirname(__FILE__) + "/database.yml").each do |key, connection|
  ActiveRecord::Base.establish_connection(connection)
  load File.dirname(__FILE__) + "/fixtures/schema.rb"
  load File.dirname(__FILE__) + "/fixtures/models.rb"
end

# bootstraping the plugin through init.rb
# tests how it would load in a real application
load File.dirname(__FILE__) + "/../rails/init.rb"

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
by_star-0.5.2 spec/spec_helper.rb
by_star-0.5.1 spec/spec_helper.rb
by_star-0.5.0 spec/spec_helper.rb
by_star-0.4.0 spec/spec_helper.rb
by_star-0.3.1 spec/spec_helper.rb
by_star-0.3.0 spec/spec_helper.rb