Spec HashObject (#3544)
This commit is contained in:
parent
e674608d10
commit
6505a42be0
1 changed files with 9 additions and 0 deletions
9
spec/lib/hash_object_spec.rb
Normal file
9
spec/lib/hash_object_spec.rb
Normal file
|
@ -0,0 +1,9 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
|
||||
describe HashObject do
|
||||
it 'has methods corresponding to hash properties' do
|
||||
expect(HashObject.new(key: 'value').key).to eq 'value'
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue