Sha256: 0e3c1d0d6548afd494c4ff600e6bda40a0283c826e0dfa08e8f27ea358137794

Contents?: true

Size: 395 Bytes

Versions: 8

Compression:

Stored size: 395 Bytes

Contents

require_relative "../test_helper"

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

ActiveRecord::Migration.create_table :postgresql_jsonb_events, force: true do |t|
  t.jsonb :properties
end

class PostgresqlJsonbEvent < PostgresqlBase
end

class PostgresqlJsonbTest < Minitest::Test
  include PropertiesTest

  def model
    PostgresqlJsonbEvent
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

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