2017-04-13 12:50:40 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-07-17 12:55:50 -04:00
|
|
|
describe SnippetsController, '(JavaScript fixtures)', type: :controller do
|
2017-04-13 12:50:40 -04:00
|
|
|
include JavaScriptFixturesHelpers
|
|
|
|
|
|
|
|
let(:admin) { create(:admin) }
|
|
|
|
let(:namespace) { create(:namespace, name: 'frontend-fixtures' )}
|
|
|
|
let(:project) { create(:project, :repository, namespace: namespace, path: 'branches-project') }
|
2017-07-17 12:55:50 -04:00
|
|
|
let(:snippet) { create(:personal_snippet, title: 'snippet.md', content: '# snippet', file_name: 'snippet.md', author: admin) }
|
2017-04-13 12:50:40 -04:00
|
|
|
|
|
|
|
render_views
|
|
|
|
|
|
|
|
before(:all) do
|
2017-07-17 12:55:50 -04:00
|
|
|
clean_frontend_fixtures('snippets/')
|
2017-04-13 12:50:40 -04:00
|
|
|
end
|
|
|
|
|
2017-08-10 18:31:42 -04:00
|
|
|
before do
|
2017-04-13 12:50:40 -04:00
|
|
|
sign_in(admin)
|
|
|
|
end
|
|
|
|
|
2017-08-22 19:19:35 -04:00
|
|
|
after do
|
|
|
|
remove_repository(project)
|
|
|
|
end
|
|
|
|
|
2017-07-17 12:55:50 -04:00
|
|
|
it 'snippets/show.html.raw' do |example|
|
|
|
|
get(:show, id: snippet.to_param)
|
2017-04-13 12:50:40 -04:00
|
|
|
|
|
|
|
expect(response).to be_success
|
|
|
|
store_frontend_fixture(response, example.description)
|
|
|
|
end
|
|
|
|
end
|