1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2024-12-16 23:22:01 +00:00
mastodon/spec/lib/hash_object_spec.rb
Akihiko Odaki (@fn_aki@pawoo.net) 6505a42be0 Spec HashObject ()
2017-06-04 14:59:52 +02:00

10 lines
202 B
Ruby

# 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