0ce6785851
Replaces all the explicit include metadata syntax in the specs (tag: true) into the implicit one (:tag). Added a cop to prevent future errors and handle autocorrection.
23 lines
534 B
Ruby
23 lines
534 B
Ruby
require 'rails_helper'
|
|
|
|
feature 'Internal Snippets', :js do
|
|
let(:internal_snippet) { create(:personal_snippet, :internal) }
|
|
|
|
describe 'normal user' do
|
|
before do
|
|
sign_in(create(:user))
|
|
end
|
|
|
|
scenario 'sees internal snippets' do
|
|
visit snippet_path(internal_snippet)
|
|
|
|
expect(page).to have_content(internal_snippet.content)
|
|
end
|
|
|
|
scenario 'sees raw internal snippets' do
|
|
visit raw_snippet_path(internal_snippet)
|
|
|
|
expect(page).to have_content(internal_snippet.content)
|
|
end
|
|
end
|
|
end
|