debian-mirror-gitlab/spec/helpers/projects/incidents_helper_spec.rb

38 lines
1.1 KiB
Ruby
Raw Normal View History

2020-10-24 23:57:45 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Projects::IncidentsHelper do
include Gitlab::Routing.url_helpers
let(:project) { create(:project) }
let(:project_path) { project.full_path }
let(:new_issue_path) { new_project_issue_path(project) }
let(:issue_path) { project_issues_path(project) }
2021-01-03 14:25:43 +05:30
let(:params) do
{
search: 'search text',
author_username: 'root',
assignee_username: 'max.power'
}
end
2020-10-24 23:57:45 +05:30
describe '#incidents_data' do
2021-01-03 14:25:43 +05:30
subject(:data) { helper.incidents_data(project, params) }
2020-10-24 23:57:45 +05:30
it 'returns frontend configuration' do
2021-01-03 14:25:43 +05:30
expect(data).to include(
2020-10-24 23:57:45 +05:30
'project-path' => project_path,
'new-issue-path' => new_issue_path,
'incident-template-name' => 'incident',
'incident-type' => 'incident',
'issue-path' => issue_path,
2021-01-03 14:25:43 +05:30
'empty-list-svg-path' => match_asset_path('/assets/illustrations/incident-empty-state.svg'),
'text-query': 'search text',
'author-username-query': 'root',
'assignee-username-query': 'max.power'
2020-10-24 23:57:45 +05:30
)
end
end
end