~cytrogen/masto-fe

ref: a0bc0619caf045f912e49bb2ddfe1e7c0a9bc0bc masto-fe/spec/lib/hash_object_spec.rb -rw-r--r-- 202 bytes
a0bc0619 — Claire [Glitch] Use JSX syntax for Fragments 2 years ago
                                                                                
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