debian-mirror-gitlab/spec/helpers/releases_helper_spec.rb

47 lines
1.3 KiB
Ruby
Raw Normal View History

2019-12-04 20:38:33 +05:30
# frozen_string_literal: true
require 'spec_helper'
describe ReleasesHelper do
describe '#illustration' do
it 'returns the correct image path' do
expect(helper.illustration).to match(/illustrations\/releases-(\w+)\.svg/)
end
end
describe '#help_page' do
it 'returns the correct link to the help page' do
expect(helper.help_page).to include('user/project/releases/index')
end
end
context 'url helpers' do
let(:project) { build(:project, namespace: create(:group)) }
2019-12-26 22:10:19 +05:30
let(:release) { create(:release, project: project) }
2019-12-04 20:38:33 +05:30
before do
helper.instance_variable_set(:@project, project)
2019-12-26 22:10:19 +05:30
helper.instance_variable_set(:@release, release)
2019-12-04 20:38:33 +05:30
end
describe '#data_for_releases_page' do
it 'has the needed data to display release blocks' do
2019-12-21 20:55:43 +05:30
keys = %i(project_id illustration_path documentation_path)
2019-12-04 20:38:33 +05:30
expect(helper.data_for_releases_page.keys).to eq(keys)
end
end
2019-12-26 22:10:19 +05:30
describe '#data_for_edit_release_page' do
it 'has the needed data to display the "edit release" page' do
keys = %i(project_id
tag_name
markdown_preview_path
markdown_docs_path
releases_page_path
update_release_api_docs_path)
expect(helper.data_for_edit_release_page.keys).to eq(keys)
end
end
2019-12-04 20:38:33 +05:30
end
end