The code powering m.abunchtell.com https://m.abunchtell.com
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

10 righe
202 B

  1. # frozen_string_literal: true
  2. require 'rails_helper'
  3. describe HashObject do
  4. it 'has methods corresponding to hash properties' do
  5. expect(HashObject.new(key: 'value').key).to eq 'value'
  6. end
  7. end