Sha256: 77eb68eec915a735bca5af97f55efc436d822482146a3d311094a0d639a7a00a

Contents?: true

Size: 878 Bytes

Versions: 6

Compression:

Stored size: 878 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.table_name = '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

6 entries across 6 versions & 1 rubygems

Version Path
superstore-1.2.0 test/test_helper.rb
superstore-1.1.4 test/test_helper.rb
superstore-1.1.3 test/test_helper.rb
superstore-1.1.2 test/test_helper.rb
superstore-1.1.1 test/test_helper.rb
superstore-1.1.0 test/test_helper.rb