Testing local variable scope on dispatch pattern.

This commit is contained in:
doop 2013-04-01 09:32:07 +04:00
parent 1e178d48c1
commit 6f08a73a00
1 changed files with 3 additions and 1 deletions

View File

@ -190,8 +190,9 @@ describe Docile do
x(third).should == 'Got a third thing'
end
fourth = nil
respond '/params' do |arg|
params[arg].should == 2
fourth = params[arg]
end
send_request '/path', 1
@ -201,6 +202,7 @@ describe Docile do
@first.should == 1
@second.should == 'Got a new ten speed'
fourth.should == 2
end
end