903431e889
This commit moves the `snippets/discover.feature` Spinach test to a Rspec feature, as part of deprecating the Spinach test suite. The original feature was called 'Discover Snippets', but the UI no longer reflects this wording. The new Rspec feature is called 'Explore Snippets' to reflect UI/Controller/View naming in use. - Remove Spinach discover snippets feature and steps - Add Rspec feature test
16 lines
548 B
Ruby
16 lines
548 B
Ruby
require 'rails_helper'
|
|
|
|
feature 'Explore Snippets', feature: true do
|
|
scenario 'User should see snippets that are not private' do
|
|
public_snippet = create(:personal_snippet, :public)
|
|
internal_snippet = create(:personal_snippet, :internal)
|
|
private_snippet = create(:personal_snippet, :private)
|
|
|
|
login_as create(:user)
|
|
visit explore_snippets_path
|
|
|
|
expect(page).to have_content(public_snippet.title)
|
|
expect(page).to have_content(internal_snippet.title)
|
|
expect(page).not_to have_content(private_snippet.title)
|
|
end
|
|
end
|