mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-31 19:17:48 +00:00
18 lines
487 B
Ruby
18 lines
487 B
Ruby
require 'rails_helper'
|
|
|
|
describe FrontendUrlsHelper do
|
|
describe '#frontend_url' do
|
|
context 'without query params' do
|
|
it 'creates path correctly' do
|
|
expect(helper.frontend_url('dashboard')).to eq 'http://test.host/app/dashboard'
|
|
end
|
|
end
|
|
|
|
context 'with query params' do
|
|
it 'creates path correctly' do
|
|
expect(helper.frontend_url('dashboard', p1: 'p1', p2: 'p2')).to eq 'http://test.host/app/dashboard?p1=p1&p2=p2'
|
|
end
|
|
end
|
|
end
|
|
end
|