Sha256: 63fa05ef1010e6824d07598b02b44f5c6040f54660621dc7ab2403547405fb6b
Contents?: true
Size: 880 Bytes
Versions: 1
Compression:
Stored size: 880 Bytes
Contents
require 'bundler/setup' Bundler.require(:default, :test) I18n.config.enforce_available_locales = false require 'rails/test_help' require 'mocha/setup' require 'support/pg' #require 'support/hstore' require 'support/cassandra' require 'support/issue' require 'support/user' def MiniTest.filter_backtrace(bt) bt end module Superstore class TestCase < ActiveSupport::TestCase def temp_object(&block) Class.new(Superstore::Base) do self.column_family = 'Issues' string :force_save before_save { self.force_save = 'junk' } def self.name 'Issue' end instance_eval(&block) if block_given? end end end module Types class TestCase < Superstore::TestCase attr_accessor :coder setup do @coder = self.class.name.sub(/Test$/, '').constantize.new end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
superstore-1.0.2 | test/test_helper.rb |