Sha256: 6b873e0d55ee16a289e03f3732f05db2e8cd856ac48391e832f1556cbb4ba288

Contents?: true

Size: 890 Bytes

Versions: 1

Compression:

Stored size: 890 Bytes

Contents

require 'rails'

I18n.config.enforce_available_locales = false
ActiveSupport::TestCase.test_order = :random

require 'active_record'
require 'rails/test_help'
require 'mocha/setup'

require 'superstore'

require 'support/pg'
require 'support/jsonb'
require 'support/models'

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'
        attribute :force_save, type: :string
        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 :type
      setup do
        @type = self.class.name.sub(/Test$/, '').constantize.new
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
superstore-2.5.0 test/test_helper.rb