Sha256: fcb5a6c3f23d7f6f84d1ece12e0cb9de37fdbe54e36ccd040c6c369a2e3c1aa0

Contents?: true

Size: 379 Bytes

Versions: 9

Compression:

Stored size: 379 Bytes

Contents

require_relative "../test_helper"

ActiveRecord::Base.establish_connection adapter: "mysql2", username: "root", database: "ahoy_test"

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

class MysqlJsonEvent < MysqlBase
end

class MysqlJsonTest < Minitest::Test
  include PropertiesTest

  def model
    MysqlJsonEvent
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

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