debian-mirror-gitlab/spec/views/projects/tree/show.html.haml_spec.rb

45 lines
1.3 KiB
Ruby
Raw Normal View History

2019-12-21 20:55:43 +05:30
# frozen_string_literal: true
2016-09-13 17:45:13 +05:30
require 'spec_helper'
describe 'projects/tree/show' do
2016-11-03 12:29:30 +05:30
include Devise::Test::ControllerHelpers
2016-09-13 17:45:13 +05:30
2017-08-17 22:00:37 +05:30
let(:project) { create(:project, :repository) }
2016-09-13 17:45:13 +05:30
let(:repository) { project.repository }
before do
2019-09-04 21:01:54 +05:30
stub_feature_flags(vue_file_list: false)
2016-09-13 17:45:13 +05:30
assign(:project, project)
assign(:repository, repository)
2018-03-17 18:26:18 +05:30
assign(:lfs_blob_ids, [])
2016-09-13 17:45:13 +05:30
allow(view).to receive(:can?).and_return(true)
allow(view).to receive(:can_collaborate_with_project?).and_return(true)
2018-03-27 19:54:05 +05:30
allow(view).to receive_message_chain('user_access.can_push_to_branch?').and_return(true)
2018-03-17 18:26:18 +05:30
allow(view).to receive(:current_application_settings).and_return(Gitlab::CurrentSettings.current_application_settings)
2016-09-13 17:45:13 +05:30
end
context 'for branch names ending on .json' do
let(:ref) { 'ends-with.json' }
let(:commit) { repository.commit(ref) }
let(:path) { '' }
let(:tree) { repository.tree(commit.id, path) }
before do
2017-09-10 17:25:29 +05:30
assign(:id, File.join(ref, path))
2016-09-13 17:45:13 +05:30
assign(:ref, ref)
assign(:path, path)
2017-09-10 17:25:29 +05:30
assign(:last_commit, commit)
assign(:tree, tree)
2016-09-13 17:45:13 +05:30
end
it 'displays correctly' do
render
expect(rendered).to have_css('.js-project-refs-dropdown .dropdown-toggle-text', text: ref)
2017-09-10 17:25:29 +05:30
expect(rendered).to have_css('.readme-holder')
2016-09-13 17:45:13 +05:30
end
end
end