22
33require "spec_helper"
44
5- describe "Parameter type mapping /" do
5+ RSpec . describe "Parameter type mapping /" do
66
77 shared_examples "Function with string parameters" do |datatype |
88 before ( :all ) do
@@ -1997,7 +1997,7 @@ def new_candidate(status)
19971997
19981998end
19991999
2000- describe "Synonyms /" do
2000+ RSpec . describe "Synonyms /" do
20012001 before ( :all ) do
20022002 plsql . connect! CONNECTION_PARAMS
20032003 end
@@ -2177,7 +2177,7 @@ def new_candidate(status)
21772177
21782178end
21792179
2180- describe "SYS.STANDARD procedures /" do
2180+ RSpec . describe "SYS.STANDARD procedures /" do
21812181
21822182 before ( :all ) do
21832183 plsql . connect! CONNECTION_PARAMS
@@ -2210,7 +2210,7 @@ def new_candidate(status)
22102210
22112211end
22122212
2213- describe "PLS_INTEGER/SIMPLE_INTEGER should be nullable" do
2213+ RSpec . describe "PLS_INTEGER/SIMPLE_INTEGER should be nullable" do
22142214
22152215 before ( :all ) do
22162216 plsql . connect! CONNECTION_PARAMS
@@ -2309,7 +2309,7 @@ def new_candidate(status)
23092309
23102310end
23112311
2312- describe "#get_argument_metadata" do
2312+ RSpec . describe "#get_argument_metadata" do
23132313 before ( :all ) do
23142314 plsql . connect! CONNECTION_PARAMS
23152315 end
@@ -2363,7 +2363,7 @@ def new_candidate(status)
23632363 end
23642364end
23652365
2366- describe "case-insensitive params" do
2366+ RSpec . describe "case-insensitive params" do
23672367 before ( :all ) do
23682368 plsql . connect! CONNECTION_PARAMS
23692369 plsql . execute <<-SQL
@@ -2387,7 +2387,7 @@ def new_candidate(status)
23872387 end
23882388end
23892389
2390- describe "Procedure with %ROWTYPE parameter on table that has hidden columns" do
2390+ RSpec . describe "Procedure with %ROWTYPE parameter on table that has hidden columns" do
23912391 before ( :all ) do
23922392 plsql . connect! CONNECTION_PARAMS
23932393 plsql . execute "DROP PACKAGE test_hidden_cols_pkg" rescue nil
@@ -2428,7 +2428,7 @@ def new_candidate(status)
24282428 end
24292429end
24302430
2431- describe "Function with TIMESTAMP columns in %ROWTYPE" do
2431+ RSpec . describe "Function with TIMESTAMP columns in %ROWTYPE" do
24322432 before ( :all ) do
24332433 plsql . connect! CONNECTION_PARAMS
24342434 plsql . execute "DROP FUNCTION test_timestamp_fn" rescue nil
@@ -2466,7 +2466,7 @@ def new_candidate(status)
24662466 end
24672467end
24682468
2469- describe "Function with TABLE OF %ROWTYPE parameter defined in package" do
2469+ RSpec . describe "Function with TABLE OF %ROWTYPE parameter defined in package" do
24702470 before ( :all ) do
24712471 plsql . connect! CONNECTION_PARAMS
24722472 plsql . execute "DROP PACKAGE test_rowtype_pkg" rescue nil
@@ -2500,7 +2500,7 @@ def new_candidate(status)
25002500 end
25012501end
25022502
2503- describe "Function with TABLE OF RECORD parameter defined in package (workaround for %ROWTYPE)" do
2503+ RSpec . describe "Function with TABLE OF RECORD parameter defined in package (workaround for %ROWTYPE)" do
25042504 before ( :all ) do
25052505 plsql . connect! CONNECTION_PARAMS
25062506 plsql . execute "DROP PACKAGE test_record_pkg" rescue nil
@@ -2532,7 +2532,7 @@ def new_candidate(status)
25322532 end
25332533end
25342534
2535- describe "Function with cross-schema type reference" do
2535+ RSpec . describe "Function with cross-schema type reference" do
25362536 before ( :all ) do
25372537 primary_user , _ = DATABASE_USERS_AND_PASSWORDS [ 0 ]
25382538 second_user , second_password = DATABASE_USERS_AND_PASSWORDS [ 1 ]
0 commit comments