Sha256: 7097ee2ce68b9f74f57272f058e9fb9d0632f4d86cf2617ed2c2057d7caf3058

Contents?: true

Size: 381 Bytes

Versions: 4

Compression:

Stored size: 381 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 QueryMethodsTest

  def model
    MysqlJsonEvent
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

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