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:
parent
1e178d48c1
commit
6f08a73a00
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue