Sha256: 48674cc15d1d7ef5b797a0d6a685ff8144667bfe9c3c59fae910b8e8e99dff8d

Contents?: true

Size: 400 Bytes

Versions: 8

Compression:

Stored size: 400 Bytes

Contents

require_relative "../test_helper"

ActiveRecord::Base.establish_connection adapter: "postgresql", database: "ahoy_test"

ActiveRecord::Migration.create_table :postgresql_hstore_events, force: true do |t|
  t.hstore :properties
end

class PostgresqlHstoreEvent < PostgresqlBase
end

class PostgresqlHstoreTest < Minitest::Test
  include PropertiesTest

  def model
    PostgresqlHstoreEvent
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
ahoy_matey-1.6.0 test/properties/postgresql_hstore_test.rb
ahoy_matey-1.5.5 test/properties/postgresql_hstore_test.rb
ahoy_matey-1.5.4 test/properties/postgresql_hstore_test.rb
ahoy_matey-1.5.3 test/properties/postgresql_hstore_test.rb
ahoy_matey-1.5.2 test/properties/postgresql_hstore_test.rb
ahoy_matey-1.5.1 test/properties/postgresql_hstore_test.rb
ahoy_matey-1.5.0 test/properties/postgresql_hstore_test.rb
ahoy_matey-1.4.2 test/properties/postgresql_hstore_test.rb