Sha256: be263fb80a1d090cec444ca7d044d75f486a524faa28778a8de6d339c88a5c70

Contents?: true

Size: 422 Bytes

Versions: 4

Compression:

Stored size: 422 Bytes

Contents

require_relative "../test_helper"

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

ActiveRecord::Migration.create_table :postgresql_text_events, force: true do |t|
  t.text :properties
end

class PostgresqlTextEvent < PostgresqlBase
  serialize :properties, JSON
end

class PostgresqlTextTest < Minitest::Test
  include QueryMethodsTest

  def model
    PostgresqlTextEvent
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

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