mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
Fix typo
This commit is contained in:
parent
42ac1f502d
commit
29c28f2af5
1 changed files with 3 additions and 3 deletions
|
@ -20,7 +20,7 @@ describe Sinatra::MultiRoute do
|
||||||
body.should be == 'normal'
|
body.should be == 'normal'
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'supports multpile routes' do
|
it 'supports multiple routes' do
|
||||||
get('/foo').should be_ok
|
get('/foo').should be_ok
|
||||||
body.should be == 'paths'
|
body.should be == 'paths'
|
||||||
get('/bar').should be_ok
|
get('/bar').should be_ok
|
||||||
|
@ -31,7 +31,7 @@ describe Sinatra::MultiRoute do
|
||||||
@count.should be == 4
|
@count.should be == 4
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'supports multpile verbs' do
|
it 'supports multiple verbs' do
|
||||||
post('/').should be_ok
|
post('/').should be_ok
|
||||||
body.should be == 'verb'
|
body.should be == 'verb'
|
||||||
put('/').should be_ok
|
put('/').should be_ok
|
||||||
|
@ -42,4 +42,4 @@ describe Sinatra::MultiRoute do
|
||||||
get('/baz').should be_ok
|
get('/baz').should be_ok
|
||||||
body.should be == 'symbol as verb'
|
body.should be == 'symbol as verb'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue