summaryrefslogtreecommitdiff
path: root/spec/rubyspec/core/true/xor_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/core/true/xor_spec.rb')
-rw-r--r--spec/rubyspec/core/true/xor_spec.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/spec/rubyspec/core/true/xor_spec.rb b/spec/rubyspec/core/true/xor_spec.rb
deleted file mode 100644
index 1d0ad394da..0000000000
--- a/spec/rubyspec/core/true/xor_spec.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-require File.expand_path('../../../spec_helper', __FILE__)
-
-describe "TrueClass#^" do
- it "returns true if other is nil or false, otherwise false" do
- (true ^ true).should == false
- (true ^ false).should == true
- (true ^ nil).should == true
- (true ^ "").should == false
- (true ^ mock('x')).should == false
- end
-end