2019-10-20 08:47:26 +00:00
|
|
|
require 'rails_helper'
|
2019-08-25 14:29:28 +00:00
|
|
|
|
|
|
|
describe FrontendUrlsHelper, type: :helper do
|
2019-10-20 08:47:26 +00:00
|
|
|
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'
|
2019-08-25 14:29:28 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-20 08:47:26 +00:00
|
|
|
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'
|
2019-08-25 14:29:28 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|