Page MenuHomeGRNET

host_routing_spec.rb
No OneTemporary

File Metadata

Created
Sat, Jul 18, 8:19 AM

host_routing_spec.rb

require 'spec_helper'
describe HostsController do
it 'routes GET /hosts/new' do
expect(get('/hosts/new')).to route_to( { controller: 'hosts', action: 'new' })
end
it 'routes POST /hosts' do
expect(post('/hosts')).to route_to( { controller: 'hosts', action: 'create' })
end
end

Event Timeline