2019-10-17 02:07:30 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-06-21 08:22:40 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Projects::CommitController, '(JavaScript fixtures)', type: :controller do
|
|
|
|
include JavaScriptFixturesHelpers
|
|
|
|
|
2020-03-26 14:08:03 -04:00
|
|
|
let_it_be(:project) { create(:project, :repository) }
|
|
|
|
let_it_be(:user) { create(:user) }
|
|
|
|
let(:commit) { project.commit("master") }
|
2018-06-21 08:22:40 -04:00
|
|
|
|
|
|
|
render_views
|
|
|
|
|
|
|
|
before(:all) do
|
|
|
|
clean_frontend_fixtures('commit/')
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
2018-07-11 10:36:08 -04:00
|
|
|
project.add_maintainer(user)
|
2018-06-21 08:22:40 -04:00
|
|
|
sign_in(user)
|
2019-02-21 11:53:53 -05:00
|
|
|
allow(SecureRandom).to receive(:hex).and_return('securerandomhex:thereisnospoon')
|
2018-06-21 08:22:40 -04:00
|
|
|
end
|
|
|
|
|
2019-04-21 06:58:07 -04:00
|
|
|
it 'commit/show.html' do
|
2018-06-21 08:22:40 -04:00
|
|
|
params = {
|
|
|
|
namespace_id: project.namespace,
|
|
|
|
project_id: project,
|
|
|
|
id: commit.id
|
|
|
|
}
|
|
|
|
|
2018-12-19 14:50:20 -05:00
|
|
|
get :show, params: params
|
2018-06-21 08:22:40 -04:00
|
|
|
|
2019-07-17 18:15:53 -04:00
|
|
|
expect(response).to be_successful
|
2018-06-21 08:22:40 -04:00
|
|
|
end
|
|
|
|
end
|