Refactor: rename module and class names.

* Module: Graph -> Network
* Class: JsonBuilder -> Graph
This commit is contained in:
Sato Hiroyuki 2013-03-07 15:42:30 +09:00
parent 784aa266bd
commit e03a018d28
5 changed files with 13 additions and 13 deletions

View file

@ -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