summaryrefslogtreecommitdiffstats
path: root/spec/unit/util/zaml_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/util/zaml_spec.rb')
-rw-r--r--spec/unit/util/zaml_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/util/zaml_spec.rb b/spec/unit/util/zaml_spec.rb
index 1f21c4e29..e39dbdf99 100644
--- a/spec/unit/util/zaml_spec.rb
+++ b/spec/unit/util/zaml_spec.rb
@@ -12,7 +12,7 @@ describe "Pure ruby yaml implementation" do
[] => "--- []",
:symbol => "--- !ruby/sym symbol",
{:a => "A"} => "--- \n !ruby/sym a: A"
- }.each { |o,y|
+ }.each { |o,y|
it "should convert the #{o.class} #{o.inspect} to yaml" do
o.to_yaml.should == y
end
@@ -26,7 +26,7 @@ describe "Pure ruby yaml implementation" do
Object.new => "--- !ruby/object {}",
[Object.new] => "--- \n - !ruby/object {}",
{Object.new => Object.new} => "--- \n ? !ruby/object {}\n : !ruby/object {}"
- }.each { |o,y|
+ }.each { |o,y|
it "should convert the #{o.class} #{o.inspect} to yaml" do
o.to_yaml.should == y
end