Sha256: 5a2d6caeba98a6091bd64a663a287cd2b2529edfbd9e0e6911618b337ac4fc92
Contents?: true
Size: 352 Bytes
Versions: 212
Compression:
Stored size: 352 Bytes
Contents
# frozen_string_literal: true require 'spec_helper' describe Array do describe "unwrap" do it "to array" do arr = [1, 2, 3] expect(arr.unwrap).to eq(arr) end it "to integer" do arr = [1] expect(arr.unwrap).to eq(1) end it "to nil" do arr = [] expect(arr.unwrap).to be_nil end end end
Version data entries
212 entries across 212 versions & 2 rubygems