Sha256: 4493d8aee3027f09ed243348ab62f080041ae5aa444739088706e4f8103f13e3
Contents?: true
Size: 1.13 KB
Versions: 11
Compression:
Stored size: 1.13 KB
Contents
require 'spec_helper' require 'aruba/api' describe "Aruba JRuby Startup Helper" do before(:all) do @fake_env = ENV.clone end before :each do Aruba.config.reset # Define before_cmd-hook load 'aruba/config/jruby.rb' end before(:each) do @fake_env['JRUBY_OPTS'] = "--1.9" @fake_env['JAVA_OPTS'] = "-Xdebug" stub_const('ENV', @fake_env) end context 'when some mri ruby' do before :each do stub_const('RUBY_PLATFORM', 'x86_64-chocolate') end before :each do Aruba.config.before :command, self end it { expect(ENV['JRUBY_OPTS']).to eq '--1.9' } it { expect(ENV['JAVA_OPTS']).to eq '-Xdebug' } end context 'when jruby ruby' do before :each do stub_const('RUBY_PLATFORM', 'java') end before :each do rb_config = double('rb_config') allow(rb_config).to receive(:[]).and_return('solaris') stub_const 'RbConfig::CONFIG', rb_config end before :each do Aruba.config.before :command, self end it { expect(ENV['JRUBY_OPTS']).to eq '--dev -X-C --1.9' } it { expect(ENV['JAVA_OPTS']).to eq '-d32 -Xdebug' } end end
Version data entries
11 entries across 11 versions & 2 rubygems