Browse Source

Spec HashObject (#3544)

closed-social-glitch-2
Akihiko Odaki (@fn_aki@pawoo.net) 6 years ago
committed by Eugen Rochko
parent
commit
6505a42be0
1 changed files with 9 additions and 0 deletions
  1. +9
    -0
      spec/lib/hash_object_spec.rb

+ 9
- 0
spec/lib/hash_object_spec.rb 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

Loading…
Cancel
Save