mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-16 08:06:08 +10:00
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Conflicts: features/steps/project/markdown_render.rb
14 lines
353 B
Ruby
14 lines
353 B
Ruby
class Spinach::Features::ProjectGraph < Spinach::FeatureSteps
|
|
include SharedAuthentication
|
|
include SharedProject
|
|
|
|
step 'page should have graphs' do
|
|
page.should have_selector ".stat-graph"
|
|
end
|
|
|
|
When 'I visit project "Shop" graph page' do
|
|
project = Project.find_by(name: "Shop")
|
|
visit project_graph_path(project, "master")
|
|
end
|
|
end
|