Sha256: 4c80d713081a88ba73227babfc670e85d46822ca50000a9f1ac8c8102629c694

Contents?: true

Size: 390 Bytes

Versions: 9

Compression:

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

  def model
    PostgresqlJsonEvent
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

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