travis-web/spec/api_redirect_spec.rb
Henrik Hodne 24a3714d62 fix(api-redirect): update regex used for determining when to redirect
With the old redirect, repositories with "png" in the name got
redirected as well as images.
2014-03-12 13:07:57 -05:00

18 lines
443 B
Ruby

require 'spec_helper'
describe Travis::Web::ApiRedirect do
let(:browser_accept) { 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8' }
it 'does not redirect normal requests' do
get('/').should_not be_redirect
end
it 'redirects /:owner/:repo.png' do
get('/foo/bar.png').should be_redirect
end
it 'does not redirect /owner/some-png-repo' do
get('/owner/some-png-repo').should_not be_redirect
end
end