summaryrefslogtreecommitdiff
path: root/spec/hashie/dash_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/hashie/dash_spec.rb')
-rw-r--r--spec/hashie/dash_spec.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/hashie/dash_spec.rb b/spec/hashie/dash_spec.rb
index d9fc01e..97ed3c1 100644
--- a/spec/hashie/dash_spec.rb
+++ b/spec/hashie/dash_spec.rb
@@ -45,6 +45,16 @@ describe Hashie::Dash do
end
end
+ describe ' initializing with a Hash' do
+ it 'should not be able to initialize non-existent properties' do
+ lambda{DashTest.new(:bork => 'abc')}.should raise_error(NoMethodError)
+ end
+
+ it 'should set properties that it is able to' do
+ DashTest.new(:first_name => 'Michael').first_name.should == 'Michael'
+ end
+ end
+
describe ' defaults' do
before do
@dash = DashTest.new