Skip to content
This repository has been archived by the owner on Apr 19, 2023. It is now read-only.

Commit

Permalink
Change this integ to workaround TORQUE-908 until it gets fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
bbrowning committed Oct 9, 2012
1 parent e85d0a7 commit d50482f
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions integration-tests/spec-domain/basic_rack_spec.rb
Expand Up @@ -3,7 +3,7 @@
shared_examples_for "basic rack" do shared_examples_for "basic rack" do


before(:each) do before(:each) do
visit "/basic-rack" visit context
page.should have_content('it worked') page.should have_content('it worked')
end end


Expand All @@ -29,23 +29,25 @@
root: #{File.dirname(__FILE__)}/../apps/rack/basic root: #{File.dirname(__FILE__)}/../apps/rack/basic
env: development env: development
web: web:
context: /basic-rack context: /basic-rack-with-heredoc
ruby: ruby:
version: #{RUBY_VERSION[0,3]} version: #{RUBY_VERSION[0,3]}
END END


let(:context) { '/basic-rack-with-heredoc' }
it_should_behave_like "basic rack" it_should_behave_like "basic rack"


end end


describe "basic rack test with hash" do describe "basic rack test with hash" do


deploy( :application => { :root => "#{File.dirname(__FILE__)}/../apps/rack/basic", :env => 'development' }, deploy( :application => { :root => "#{File.dirname(__FILE__)}/../apps/rack/basic", :env => 'development' },
:web => { :context => '/basic-rack' }, :web => { :context => '/basic-rack-with-hash' },
:ruby => { :version => RUBY_VERSION[0,3] } ) :ruby => { :version => RUBY_VERSION[0,3] } )




let(:context) { '/basic-rack-with-hash' }
it_should_behave_like "basic rack" it_should_behave_like "basic rack"


end end

0 comments on commit d50482f

Please sign in to comment.