File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ Review `spec/spec_helper.rb` to see default schema/user names and database names
172172
173173* Run tests with local Vagrant based Oracle XE database
174174
175- LOCAL_DATABASE = Y rake spec
175+ USE_VM_DATABASE = Y rake spec
176176
177177* Run tests with other Oracle database
178178
Original file line number Diff line number Diff line change 2727# in spec/support/ and its subdirectories.
2828Dir [ File . join ( File . dirname ( __FILE__ ) , 'support/**/*.rb' ) ] . each { |f | require f }
2929
30- if ENV [ 'LOCAL_DATABASE ' ] == 'Y'
30+ if ENV [ 'USE_VM_DATABASE ' ] == 'Y'
3131 DATABASE_NAME = 'XE'
3232else
3333 DATABASE_NAME = ENV [ 'DATABASE_NAME' ] || 'orcl'
4444# specify which database version is used (will be verified in one test)
4545DATABASE_VERSION = ENV [ 'DATABASE_VERSION' ] || '10.2.0.4'
4646
47- if ENV [ 'LOCAL_DATABASE ' ] == 'Y'
47+ if ENV [ 'USE_VM_DATABASE ' ] == 'Y'
4848 RSpec . configure do |config |
4949 config . before ( :suite ) do
5050 TestDb . build
You can’t perform that action at this time.
0 commit comments