travis-web/spec/allow_spec.rb
2012-10-22 21:22:47 +02:00

12 lines
373 B
Ruby

require 'spec_helper'
describe Travis::Web::Allow do
example { post('/') .should_not be_ok }
example { delete('/') .should_not be_ok }
example { put('/') .should_not be_ok }
example { patch('/') .should_not be_ok }
example { options('/') .should_not be_ok }
example { head('/') .should be_ok }
example { get('/') .should be_ok }
end