gitlab-org--gitlab-foss/features/steps/project/graph.rb

14 lines
334 B
Ruby
Raw Normal View History

class ProjectGraph < Spinach::FeatureSteps
include SharedAuthentication
include SharedProject
Then 'page should have graphs' do
page.should have_selector ".stat-graph"
end
When 'I visit project "Shop" graph page' do
2014-01-19 18:55:59 +00:00
project = Project.find_by(name: "Shop")
visit project_graph_path(project, "master")
end
end