1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00
This commit is contained in:
Katrina Owen 2012-12-09 17:35:15 +01:00
parent 42ac1f502d
commit 29c28f2af5

View file

@ -20,7 +20,7 @@ describe Sinatra::MultiRoute do
body.should be == 'normal'
end
it 'supports multpile routes' do
it 'supports multiple routes' do
get('/foo').should be_ok
body.should be == 'paths'
get('/bar').should be_ok
@ -31,7 +31,7 @@ describe Sinatra::MultiRoute do
@count.should be == 4
end
it 'supports multpile verbs' do
it 'supports multiple verbs' do
post('/').should be_ok
body.should be == 'verb'
put('/').should be_ok