~cytrogen/masto-fe

ref: e387175fc9a3ebfd72ab45ebfe43ecfabef7b0c3 masto-fe/spec/lib/hash_object_spec.rb -rw-r--r-- 202 bytes
e387175f — Matt Jankowski Fix RSpec/RepeatedExample cop (#24849) 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