Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSato Hiroyuki <sathiroyuki@gmail.com>2013-03-07 10:42:30 +0400
committerSato Hiroyuki <sathiroyuki@gmail.com>2013-03-07 10:42:30 +0400
commite03a018d28488260eb6c69741680691426f823a6 (patch)
treec9118a4271405ee677852ecde239a360cd4ce1d2 /features
parent784aa266bdd38ec560c11bea92fc9b815e2ca456 (diff)
Refactor: rename module and class names.
* Module: Graph -> Network * Class: JsonBuilder -> Graph
Diffstat (limited to 'features')
-rw-r--r--features/steps/project/project_network_graph.rb8
-rw-r--r--features/steps/shared/paths.rb4
2 files changed, 6 insertions, 6 deletions
diff --git a/features/steps/project/project_network_graph.rb b/features/steps/project/project_network_graph.rb
index 7e9a7c295d0..cf5fa751ccf 100644
--- a/features/steps/project/project_network_graph.rb
+++ b/features/steps/project/project_network_graph.rb
@@ -8,8 +8,8 @@ class ProjectNetworkGraph < Spinach::FeatureSteps
end
When 'I visit project "Shop" network page' do
- # Stub Graph::JsonBuilder max_size to speed up test (10 commits vs. 650)
- Graph::JsonBuilder.stub(max_count: 10)
+ # Stub Graph max_size to speed up test (10 commits vs. 650)
+ Network::Graph.stub(max_count: 10)
project = Project.find_by_name("Shop")
visit project_graph_path(project, "master")
@@ -25,7 +25,7 @@ class ProjectNetworkGraph < Spinach::FeatureSteps
end
end
- And 'I switch ref to "stable"' do
+ When 'I switch ref to "stable"' do
page.select 'stable', :from => 'ref'
sleep 2
end
@@ -40,7 +40,7 @@ class ProjectNetworkGraph < Spinach::FeatureSteps
end
end
- And 'I looking for a commit by SHA of "v2.1.0"' do
+ When 'I looking for a commit by SHA of "v2.1.0"' do
within ".content .search" do
fill_in 'q', :with => '98d6492'
find('button').click
diff --git a/features/steps/shared/paths.rb b/features/steps/shared/paths.rb
index 431d5299d8f..54cdbd4ba2f 100644
--- a/features/steps/shared/paths.rb
+++ b/features/steps/shared/paths.rb
@@ -142,8 +142,8 @@ module SharedPaths
end
Given "I visit my project's network page" do
- # Stub Graph::JsonBuilder max_size to speed up test (10 commits vs. 650)
- Graph::JsonBuilder.stub(max_count: 10)
+ # Stub Graph max_size to speed up test (10 commits vs. 650)
+ Network::Graph.stub(max_count: 10)
visit project_graph_path(@project, root_ref)
end