c31c8c55a4
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Conflicts: features/steps/project/markdown_render.rb
11 lines
310 B
Ruby
11 lines
310 B
Ruby
class Spinach::Features::DashboardProjects < Spinach::FeatureSteps
|
|
include SharedAuthentication
|
|
include SharedPaths
|
|
include SharedProject
|
|
|
|
step 'I should see projects list' do
|
|
@user.authorized_projects.all.each do |project|
|
|
page.should have_link project.name_with_namespace
|
|
end
|
|
end
|
|
end
|