summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Bleigh <michael@intridea.com>2011-10-15 03:03:27 -0500
committerMichael Bleigh <michael@intridea.com>2011-10-15 03:03:27 -0500
commite3799471597da797fa1473d28ebf96c1f7361740 (patch)
treeb2916c870f73da6841f6547899bd671c6cbf7fb5
parent42257587ca1ca10cded860d0acce9d61968e3942 (diff)
downloadhashie-e3799471597da797fa1473d28ebf96c1f7361740.tar.gz
Fix spec broken by merge
-rw-r--r--spec/hashie/dash_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/hashie/dash_spec.rb b/spec/hashie/dash_spec.rb
index 893f903..5922a3f 100644
--- a/spec/hashie/dash_spec.rb
+++ b/spec/hashie/dash_spec.rb
@@ -28,12 +28,12 @@ describe DashTest do
it('subclasses Hashie::Hash') { should respond_to(:to_mash) }
- its(:to_s) { should == '<#DashTest count=0 email="bob@example.com" first_name="Bob">' }
+ its(:to_s) { should == '#<DashTest count=0 email="bob@example.com" first_name="Bob">' }
it 'lists all set properties in inspect' do
subject.first_name = 'Bob'
subject.email = 'bob@example.com'
- subject.inspect.should == '<#DashTest count=0 email="bob@example.com" first_name="Bob">'
+ subject.inspect.should == '#<DashTest count=0 email="bob@example.com" first_name="Bob">'
end
its(:count) { should be_zero }