From 8d0e84bcf49ccb136557302313bac0833b7d91e5 Mon Sep 17 00:00:00 2001 From: Hiroyuki Sato Date: Sat, 29 Oct 2016 00:47:15 +0900 Subject: [PATCH] Fix spinach test --- features/project/network_graph.feature | 2 +- features/steps/project/network_graph.rb | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/features/project/network_graph.feature b/features/project/network_graph.feature index 89a02706bd2..93c884e23c5 100644 --- a/features/project/network_graph.feature +++ b/features/project/network_graph.feature @@ -43,4 +43,4 @@ Feature: Project Network Graph Scenario: I should fail to look for a commit When I look for a commit by ";" - Then page status code should be 404 + Then I should see non-existent git revision error message diff --git a/features/steps/project/network_graph.rb b/features/steps/project/network_graph.rb index 019b3124a86..ff9251615c9 100644 --- a/features/steps/project/network_graph.rb +++ b/features/steps/project/network_graph.rb @@ -109,4 +109,8 @@ class Spinach::Features::ProjectNetworkGraph < Spinach::FeatureSteps find('button').click end end + + step 'I should see non-existent git revision error message' do + expect(page).to have_selector '.flash-alert', text: "Git revision ';' does not exist." + end end