blob: ce18065209f74c1b29b7235524cd31082456cde3 (
plain) (
blame)
1
2
3
4
5
6
7
8
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
|