You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.0 KiB
38 lines
1.0 KiB
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe SettingsHelper do
|
|
describe 'session_device_icon' do
|
|
context 'with a mobile device' do
|
|
let(:session) { SessionActivation.new(user_agent: 'Mozilla/5.0 (iPhone)') }
|
|
|
|
it 'detects the device and returns a descriptive string' do
|
|
result = helper.session_device_icon(session)
|
|
|
|
expect(result).to eq('mobile')
|
|
end
|
|
end
|
|
|
|
context 'with a tablet device' do
|
|
let(:session) { SessionActivation.new(user_agent: 'Mozilla/5.0 (iPad)') }
|
|
|
|
it 'detects the device and returns a descriptive string' do
|
|
result = helper.session_device_icon(session)
|
|
|
|
expect(result).to eq('tablet')
|
|
end
|
|
end
|
|
|
|
context 'with a desktop device' do
|
|
let(:session) { SessionActivation.new(user_agent: 'Mozilla/5.0 (Macintosh)') }
|
|
|
|
it 'detects the device and returns a descriptive string' do
|
|
result = helper.session_device_icon(session)
|
|
|
|
expect(result).to eq('desktop')
|
|
end
|
|
end
|
|
end
|
|
end
|