Sha256: 75b62594896e4c074521026bc174cda81cdf017d5ea7092f9057f47b412043a3

Contents?: true

Size: 409 Bytes

Versions: 9

Compression:

Stored size: 409 Bytes

Contents

require_relative "../test_helper"

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

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

class MysqlTextEvent < MysqlBase
  serialize :properties, JSON
end

class MysqlTextTest < Minitest::Test
  include PropertiesTest

  def model
    MysqlTextEvent
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

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