Archived
2
0
Fork 0
This repository has been archived on 2024-06-09. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
mastodon/spec/lib/hash_object_spec.rb
Akihiko Odaki (@fn_aki@pawoo.net) 6505a42be0 Spec HashObject (#3544)
2017-06-04 14:59:52 +02:00

9 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