Sha256: e195f0ce9af2d2ec191d13a25010ebee662772ac7d69b174968ac2a8e732a252

Contents?: true

Size: 944 Bytes

Versions: 8

Compression:

Stored size: 944 Bytes

Contents

require 'system_helper'

describe Admin::TopController, type: :feature do
  describe "GET 'full_path'" do
    before do
      page.driver.headers = { 'User-Agent' => user_agent }
    end

    context 'PCからのアクセスの場合' do
      let(:user_agent) do
        'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 1.1.4322)'
      end
      it '_partial.html.erbが使用されること' do
        visit '/admin/top/full_path'

        expect(page).to have_content('_partial.html.erb')
      end
    end

    context 'DoCoMoからのアクセスの場合' do
      let(:user_agent) do
        'DoCoMo/2.0 SH902i(c100;TB;W24H12)'
      end
      it '_partial_mobile_docomo.html.erbが使用されること' do
        visit '/admin/top/full_path'

        expect(page).to have_content('_partial_mobile_docomo.html.erb')
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
jpmobile-8.0.0 test/rails/overrides/spec/system/admin/top_spec.rb
jpmobile-7.2.0 test/rails/overrides/spec/system/admin/top_spec.rb
jpmobile-7.1.0 test/rails/overrides/spec/system/admin/top_spec.rb
jpmobile-7.0.4 test/rails/overrides/spec/system/admin/top_spec.rb
jpmobile-7.0.3 test/rails/overrides/spec/system/admin/top_spec.rb
jpmobile-7.0.2 test/rails/overrides/spec/system/admin/top_spec.rb
jpmobile-7.0.1 test/rails/overrides/spec/system/admin/top_spec.rb
jpmobile-7.0.0 test/rails/overrides/spec/system/admin/top_spec.rb