0
0
Fork 0
mirror of https://github.com/lunaisnotaboy/mastodon.git synced 2025-01-02 18:46:47 +00:00
mastodon/spec/lib/hash_object_spec.rb

10 lines
202 B
Ruby
Raw Normal View History

2017-06-04 12:59:52 +00:00
# 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