Sha256: e980b7c792c8048f40c9deaaf53ed8beb2ae5587634f945aaa10bedc0ee754d5

Contents?: true

Size: 420 Bytes

Versions: 9

Compression:

Stored size: 420 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 PropertiesTest

  def model
    PostgresqlTextEvent
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

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