gitlab-org--gitlab-foss/spec/views/projects/tree/show.html.haml_spec.rb

41 lines
1.2 KiB
Ruby
Raw Normal View History

2016-07-30 22:09:19 -04:00
require 'spec_helper'
describe 'projects/tree/show' do
include Devise::Test::ControllerHelpers
2016-07-30 22:09:19 -04:00
let(:project) { create(:project, :repository) }
2016-07-30 22:09:19 -04:00
let(:repository) { project.repository }
before do
assign(:project, project)
assign(:repository, repository)
2017-12-14 06:31:50 -05:00
assign(:lfs_blob_ids, [])
2016-07-30 22:09:19 -04:00
allow(view).to receive(:can?).and_return(true)
allow(view).to receive(:can_collaborate_with_project?).and_return(true)
allow(view).to receive_message_chain('user_access.can_push_to_branch?').and_return(true)
allow(view).to receive(:current_application_settings).and_return(Gitlab::CurrentSettings.current_application_settings)
2016-07-30 22:09:19 -04:00
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
assign(:id, File.join(ref, path))
2016-07-30 22:09:19 -04:00
assign(:ref, ref)
assign(:path, path)
assign(:last_commit, commit)
assign(:tree, tree)
2016-07-30 22:09:19 -04:00
end
it 'displays correctly' do
render
expect(rendered).to have_css('.js-project-refs-dropdown .dropdown-toggle-text', text: ref)
2017-05-08 19:52:05 -04:00
expect(rendered).to have_css('.readme-holder')
2016-07-30 22:09:19 -04:00
end
end
end