mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
12 lines
299 B
Ruby
12 lines
299 B
Ruby
|
require File.expand_path('../../../spec_helper', __FILE__)
|
||
|
|
||
|
describe "FalseClass#&" do
|
||
|
it "returns false" do
|
||
|
(false & false).should == false
|
||
|
(false & true).should == false
|
||
|
(false & nil).should == false
|
||
|
(false & "").should == false
|
||
|
(false & mock('x')).should == false
|
||
|
end
|
||
|
end
|