Spec HashObject (#3544)

This commit is contained in:
Akihiko Odaki (@fn_aki@pawoo.net) 2017-06-04 21:59:52 +09:00 committed by Eugen Rochko
parent e674608d10
commit 6505a42be0
1 changed files with 9 additions and 0 deletions

View 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