Skip to content

Instantly share code, notes, and snippets.

@ianks

ianks/block3.rb Secret

Created June 17, 2017 00:01
Show Gist options
  • Save ianks/ff242b3d3cf8ad6069a165c2e4ead983 to your computer and use it in GitHub Desktop.
Save ianks/ff242b3d3cf8ad6069a165c2e4ead983 to your computer and use it in GitHub Desktop.
RSpec::Matchers.define :have_same_elements_as do |sample|
match do |actual|
similar?(sample, actual)
end
def similar?(a, b)
a.sort == b.sort
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment