File tree Expand file tree Collapse file tree 2 files changed +3
-14
lines changed
spec/active_record/connection_adapters/oracle_enhanced Expand file tree Collapse file tree 2 files changed +3
-14
lines changed Original file line number Diff line number Diff line change @@ -300,3 +300,6 @@ RSpec/EmptyLineAfterSubject:
300300
301301RSpec/ExcessiveDocstringSpacing :
302302 Enabled : true
303+
304+ RSpec/RepeatedExample :
305+ Enabled : true
Original file line number Diff line number Diff line change @@ -229,20 +229,6 @@ class ::TestPost < ActiveRecord::Base
229229 dump = ActiveRecord ::Base . connection . structure_dump
230230 expect ( dump ) . to match ( /#{ comment_sql } / )
231231 end
232-
233- it "should dump table comments" do
234- comment_sql = %Q(COMMENT ON TABLE "TEST_POSTS" IS 'Test posts with ''some'' "quotes"')
235- @conn . execute comment_sql
236- dump = ActiveRecord ::Base . connection . structure_dump
237- expect ( dump ) . to match ( /#{ comment_sql } / )
238- end
239-
240- it "should dump column comments" do
241- comment_sql = %Q(COMMENT ON COLUMN "TEST_POSTS"."TITLE" IS 'The title of the post with ''some'' "quotes"')
242- @conn . execute comment_sql
243- dump = ActiveRecord ::Base . connection . structure_dump
244- expect ( dump ) . to match ( /#{ comment_sql } / )
245- end
246232 end
247233
248234 describe "temporary tables" do
You can’t perform that action at this time.
0 commit comments