summaryrefslogtreecommitdiff
path: root/test/fixtures/fake_sorted_set_gem/sorted_set.rb
blob: f45a766303797264d2efe184a2708c8b1e3c05c6 (plain)
1
2
3
4
5
6
7
8
9
Object.instance_exec do
  # Remove the constant to cancel autoload that would be fired by
  # `class SortedSet` and cause circular require.
  remove_const :SortedSet if const_defined?(:SortedSet)
end

class SortedSet < Set
  # ...
end