Sha256: 1696944842a14b5ef2be36d7c2da5b937b8783dac6aa1e364307993dc719efef
Contents?: true
Size: 235 Bytes
Versions: 8
Compression:
Stored size: 235 Bytes
Contents
module Assertions # Assert that the two Arrays contain the same Strings or Symbols def assert_equal_arrays(expected_array, actual_array) assert_equal expected_array.map(&:to_s).sort, actual_array.map(&:to_s).sort end end
Version data entries
8 entries across 8 versions & 1 rubygems