spec/models/concerns/linkable_spec.rb in pupa-0.0.10 vs spec/models/concerns/linkable_spec.rb in pupa-0.0.11
- old
+ new
@@ -10,17 +10,25 @@
let :object do
klass.new
end
+ describe '#links' do
+ it 'should symbolize keys' do
+ object.links = [{'url' => 'http://example.com', 'note' => 'homepage'}]
+ object.links.should == [{url: 'http://example.com', note: 'homepage'}]
+ end
+ end
+
describe '#add_link' do
it 'should add a link' do
object.add_link('http://example.com', note: 'homepage')
object.links.should == [{url: 'http://example.com', note: 'homepage'}]
end
it 'should not add a link without a url' do
object.add_link(nil)
+ object.add_link('')
object.links.blank?.should == true
end
end
end