From 0726da2d72be64cd94a377341d85283f93243c31 Mon Sep 17 00:00:00 2001 From: Peter Boling Date: Sat, 27 Jul 2013 12:22:11 -0400 Subject: [PATCH] better test names --- spec/integration/node_encoding_spec.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/spec/integration/node_encoding_spec.rb b/spec/integration/node_encoding_spec.rb index def4451..ae3eab6 100644 --- a/spec/integration/node_encoding_spec.rb +++ b/spec/integration/node_encoding_spec.rb @@ -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 @@ -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