Sha256: 05d511d1d1aaa4cfafe1590d47f1d61c435a4026eb0dd7266a6a338510d4875c

Contents?: true

Size: 158 Bytes

Versions: 34

Compression:

Stored size: 158 Bytes

Contents

RSpec::Matchers.define :be_same_array_as do |expected_array|
    match do |actual_array|
        Set.new(actual_array) == Set.new(expected_array)
    end
end

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
cuboid-0.1.6.1 spec/support/helpers/matchers.rb
cuboid-0.1.6 spec/support/helpers/matchers.rb
cuboid-0.1.5 spec/support/helpers/matchers.rb
cuboid-0.1.4 spec/support/helpers/matchers.rb
cuboid-0.1.3 spec/support/helpers/matchers.rb
cuboid-0.1.2 spec/support/helpers/matchers.rb
cuboid-0.1.1 spec/support/helpers/matchers.rb
cuboid-0.1.0 spec/support/helpers/matchers.rb
cuboid-0.0.5 spec/support/helpers/matchers.rb
cuboid-0.0.4 spec/support/helpers/matchers.rb
cuboid-0.0.3 spec/support/helpers/matchers.rb
cuboid-0.0.3alpha spec/support/helpers/matchers.rb
cuboid-0.0.2alpha spec/support/helpers/matchers.rb
cuboid-0.0.1alpha spec/support/helpers/matchers.rb