Sha256: a51685e11b6f02c920576a6172f77df59a87609f37a64582d1f000a0ec292360
Contents?: true
Size: 306 Bytes
Versions: 24
Compression:
Stored size: 306 Bytes
Contents
RSpec.describe "EitilCore Kernel#args_to_h!" do it "should create an hash, with the local variables as key / value pairs" do a = 1 b = "two" c = :three created_hash = args_to_h! :a, :c expected_hash = {a: 1, c: :three} expect(created_hash).to eq expected_hash end end
Version data entries
24 entries across 24 versions & 1 rubygems