34 lines
697 B
Ruby
34 lines
697 B
Ruby
|
require 'spec_helper'
|
||
|
|
||
|
describe Projects::CommitController, '(JavaScript fixtures)', type: :controller do
|
||
|
include JavaScriptFixturesHelpers
|
||
|
|
||
|
set(:project) { create(:project, :repository) }
|
||
|
set(:user) { create(:user) }
|
||
|
let(:commit) { project.commit("master") }
|
||
|
|
||
|
render_views
|
||
|
|
||
|
before(:all) do
|
||
|
clean_frontend_fixtures('commit/')
|
||
|
end
|
||
|
|
||
|
before do
|
||
|
project.add_master(user)
|
||
|
sign_in(user)
|
||
|
end
|
||
|
|
||
|
it 'commit/show.html.raw' do |example|
|
||
|
params = {
|
||
|
namespace_id: project.namespace,
|
||
|
project_id: project,
|
||
|
id: commit.id
|
||
|
}
|
||
|
|
||
|
get :show, params
|
||
|
|
||
|
expect(response).to be_success
|
||
|
store_frontend_fixture(response, example.description)
|
||
|
end
|
||
|
end
|