require 'spec/helper'
require 'examples/linking'
describe 'Linking' do
behaves_like 'http'
ramaze
it 'should provide a link to help' do
r = get('/').body
r.should.include('Help?')
end
it 'should provide a link to another controller' do
r = get('/help').body
r.should.include('A Different Controller')
end
end