From 1b9d2c31adface9b45f4c254673d60ce3bee497a Mon Sep 17 00:00:00 2001 From: Sven Fuchs Date: Fri, 14 Dec 2012 16:16:24 +0100 Subject: [PATCH] disable tests for MobileRedirect since it is now unused --- spec/mobile_redirect_spec.rb | 38 +++++++++++++++++++----------------- 1 file changed, 20 insertions(+), 18 deletions(-) diff --git a/spec/mobile_redirect_spec.rb b/spec/mobile_redirect_spec.rb index 490cfae4..6ac79147 100644 --- a/spec/mobile_redirect_spec.rb +++ b/spec/mobile_redirect_spec.rb @@ -1,20 +1,22 @@ require 'spec_helper' -describe Travis::Web::App::MobileRedirect do - - describe 'with mobile client' do - let(:agent) { 'blah blah Mobile blablah' } - - it 'redirects to secure.travis-ci.org' do - get('/foo/bar?baz', {}, 'HTTP_USER_AGENT' => agent).should be_redirect - last_response.headers['Location'].should == 'https://secure.travis-ci.org/foo/bar?baz' - end - end - - describe 'with mobile param' do - it 'redirects to secure.travis-ci.org' do - get('/foo/bar?baz', mobile: true).should be_redirect - last_response.headers['Location'].should == 'https://secure.travis-ci.org/foo/bar?mobile=true&baz' - end - end -end +# disabled, we now use Rack::MobileDetect +# +# describe Travis::Web::App::MobileRedirect do +# +# describe 'with mobile client' do +# let(:agent) { 'blah blah Mobile blablah' } +# +# it 'redirects to secure.travis-ci.org' do +# get('/foo/bar?baz', {}, 'HTTP_USER_AGENT' => agent).should be_redirect +# last_response.headers['Location'].should == 'https://secure.travis-ci.org/foo/bar?baz' +# end +# end +# +# describe 'with mobile param' do +# it 'redirects to secure.travis-ci.org' do +# get('/foo/bar?baz', mobile: true).should be_redirect +# last_response.headers['Location'].should == 'https://secure.travis-ci.org/foo/bar?mobile=true&baz' +# end +# end +# end