File tree 2 files changed +10
-6
lines changed
2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 133
133
it "should return correct types" do
134
134
expected_types = %w[
135
135
mediumint(9)
136
- varchar(10 )
136
+ varchar(13 )
137
137
bit(64)
138
138
bit(1)
139
139
tinyint(4)
152
152
timestamp
153
153
time
154
154
year(4)
155
- char(10 )
156
- varchar(10 )
155
+ char(13 )
156
+ varchar(13 )
157
157
binary(10)
158
158
varbinary(10)
159
159
tinyblob
160
- tinytext
160
+ text(1020)
161
161
blob
162
- text
162
+ text(262140)
163
163
mediumblob
164
- mediumtext
164
+ text(67108860)
165
165
longblob
166
166
longtext
167
167
enum
Original file line number Diff line number Diff line change 19
19
RSpec . configure do |config |
20
20
config . disable_monkey_patching!
21
21
22
+ config . expect_with :rspec do |expectations |
23
+ expectations . max_formatted_output_length = 1200
24
+ end
25
+
22
26
def with_internal_encoding ( encoding )
23
27
old_enc = Encoding . default_internal
24
28
old_verbose = $VERBOSE
You can’t perform that action at this time.
0 commit comments