summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtur Bilski <admin@arturbilski.pl>2012-11-23 15:20:10 +0100
committerArtur Bilski <admin@arturbilski.pl>2012-11-23 15:20:10 +0100
commit212696ffa4fd016a980f77a79b9ae1e07cde79f6 (patch)
tree21cd86e3cd61d82e8ec0f96a46457d332a2030d9
parentabfd2b1dff4df20db2d21234b2ab0560407402f2 (diff)
downloadhashie-212696ffa4fd016a980f77a79b9ae1e07cde79f6.tar.gz
spec code formatting
-rw-r--r--spec/hashie/mash_spec.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/spec/hashie/mash_spec.rb b/spec/hashie/mash_spec.rb
index 79ad080..ab4762b 100644
--- a/spec/hashie/mash_spec.rb
+++ b/spec/hashie/mash_spec.rb
@@ -106,7 +106,6 @@ describe Hashie::Mash do
@mash.object_id.should == "Steve"
end
-
it "should not call super if id is not a key" do
@mash.id.should == nil
end
@@ -249,7 +248,6 @@ describe Hashie::Mash do
son.non_existent_.should be_kind_of(SubMash)
end
-
it "should respect the class when converting the value" do
record = Hashie::Mash.new
record.details = Hashie::Mash.new({:email => "randy@asf.com"})
@@ -267,7 +265,7 @@ describe Hashie::Mash do
record.details.should be_kind_of(SubMash)
end
- describe '#respond_to?' do
+ describe "#respond_to?" do
it 'should respond to a normal method' do
Hashie::Mash.new.should be_respond_to(:key?)
end