774c523c1f
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
15 lines
411 B
Ruby
15 lines
411 B
Ruby
class Spinach::Features::DashboardStarredProjects < Spinach::FeatureSteps
|
|
include SharedAuthentication
|
|
include SharedPaths
|
|
include SharedProject
|
|
|
|
step 'I starred project "Community"' do
|
|
current_user.toggle_star(Project.find_by(name: 'Community'))
|
|
end
|
|
|
|
step 'I should not see project "Shop"' do
|
|
page.within '.projects-list' do
|
|
expect(page).not_to have_content('Shop')
|
|
end
|
|
end
|
|
end
|