1
0
Fork 0
mirror of https://github.com/ms-ati/docile synced 2023-03-27 23:21:52 -04:00

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

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