blob: 26c69edc7b88116dfff47aa089bf30520cdfe2ee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
require "cases/helper"
require "cases/json_shared_test_cases"
if ActiveRecord::Base.connection.supports_json?
class Mysql2JSONTest < ActiveRecord::Mysql2TestCase
include JSONSharedTestCases
self.use_transactional_tests = false
def setup
super
@connection.create_table("json_data_type") do |t|
t.json "payload"
t.json "settings"
end
end
private
def column_type
:json
end
end
end
|