summaryrefslogtreecommitdiff
path: root/spec/ruby/core/set/plus_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/set/plus_spec.rb')
-rw-r--r--spec/ruby/core/set/plus_spec.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/spec/ruby/core/set/plus_spec.rb b/spec/ruby/core/set/plus_spec.rb
index 7e44ff0b7e..839f77fc39 100644
--- a/spec/ruby/core/set/plus_spec.rb
+++ b/spec/ruby/core/set/plus_spec.rb
@@ -1,6 +1,7 @@
require_relative '../../spec_helper'
-require_relative 'shared/union'
describe "Set#+" do
- it_behaves_like :set_union, :+
+ it "is an alias of Set#|" do
+ Set.instance_method(:+).should == Set.instance_method(:|)
+ end
end