mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Update to ruby/spec@41068a6
* Only small fixes to specs from CRuby to review the diff more easily. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63767 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
80fdfbf809
commit
fc1f3f14d3
3 changed files with 52 additions and 52 deletions
|
@ -643,7 +643,9 @@ describe "Module#private_constant marked constants" do
|
||||||
lambda do
|
lambda do
|
||||||
ConstantVisibility::PrivConstModuleChild::PRIVATE_CONSTANT_MODULE
|
ConstantVisibility::PrivConstModuleChild::PRIVATE_CONSTANT_MODULE
|
||||||
end.should raise_error(NameError) {|e|
|
end.should raise_error(NameError) {|e|
|
||||||
|
ruby_bug "#14853", ""..."2.5.2" do
|
||||||
e.receiver.should == ConstantVisibility::PrivConstModule
|
e.receiver.should == ConstantVisibility::PrivConstModule
|
||||||
|
end
|
||||||
e.name.should == :PRIVATE_CONSTANT_MODULE
|
e.name.should == :PRIVATE_CONSTANT_MODULE
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
|
@ -301,13 +301,9 @@ describe "Operators" do
|
||||||
from = 1
|
from = 1
|
||||||
to = 2
|
to = 2
|
||||||
# These are Range instances, not flip-flop
|
# These are Range instances, not flip-flop
|
||||||
@verbose = $VERBOSE
|
suppress_warning do
|
||||||
$VERBOSE = nil
|
|
||||||
begin
|
|
||||||
(eval("from..to") ? 3 : 4).should == 3
|
(eval("from..to") ? 3 : 4).should == 3
|
||||||
(eval("from...to") ? 3 : 4).should == 3
|
(eval("from...to") ? 3 : 4).should == 3
|
||||||
ensure
|
|
||||||
$VERBOSE = @verbose
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -13,10 +13,11 @@ end
|
||||||
|
|
||||||
# TODO: verify these on non-windows, non-darwin OS
|
# TODO: verify these on non-windows, non-darwin OS
|
||||||
platform_is_not :windows do
|
platform_is_not :windows do
|
||||||
grpname = IO.popen(%w'id -gn', err: IO::NULL, &:read)
|
grpname = nil
|
||||||
next unless $?.success?
|
guard -> {
|
||||||
grpname.chomp!
|
grpname = IO.popen(%w'id -gn', err: IO::NULL, &:read).chomp
|
||||||
|
$?.success?
|
||||||
|
} do
|
||||||
describe "Etc.getgrgid" do
|
describe "Etc.getgrgid" do
|
||||||
before :all do
|
before :all do
|
||||||
@gid = `id -g`.strip.to_i
|
@gid = `id -g`.strip.to_i
|
||||||
|
@ -72,3 +73,4 @@ platform_is_not :windows do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue