Sha256: 1670a5a838e123537ef4eee7d057703430b73f39de538f70421d17f0be1f2e69

Contents?: true

Size: 392 Bytes

Versions: 4

Compression:

Stored size: 392 Bytes

Contents

require_relative "../test_helper"

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

ActiveRecord::Migration.create_table :postgresql_json_events, force: true do |t|
  t.json :properties
end

class PostgresqlJsonEvent < PostgresqlBase
end

class PostgresqlJsonTest < Minitest::Test
  include QueryMethodsTest

  def model
    PostgresqlJsonEvent
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ahoy_matey-2.1.0 test/query_methods/postgresql_json_test.rb
ahoy_matey-2.0.2 test/query_methods/postgresql_json_test.rb
ahoy_matey-2.0.1 test/query_methods/postgresql_json_test.rb
ahoy_matey-2.0.0 test/query_methods/postgresql_json_test.rb