Skip to content

Commit

Permalink
better test names
Browse files Browse the repository at this point in the history
  • Loading branch information
pboling committed Jul 27, 2013
1 parent d11e08f commit 0726da2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions spec/integration/node_encoding_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
existing_node.last_name.should == "池水"
end

it "can get a node that exists via cypher" do
it "can get a node with UTF-8 encoded properties that exists via cypher" do
new_node = Neography::Node.create("first_name" => "美都", "last_name" => "池水")
cypher = "START n = node({id}) return n"
@neo = Neography::Rest.new
Expand All @@ -57,9 +57,8 @@
existing_node.last_name.should == "池水"
end

it "can get columns of data from a node that exists via cypher" do
it "can get columns of data from a node with UTF-8 encoded properties that exists via cypher" do
new_node = Neography::Node.create("first_name" => "美都", "last_name" => "池水")
#cypher = "START n = node({id}) return n"
cypher = "START me = node({id})
RETURN me.first_name, me.last_name"
@neo = Neography::Rest.new
Expand Down

0 comments on commit 0726da2

Please sign in to comment.