forked from jruby/jruby
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request jruby#8120 from eregon/update-specs
Update specs
- Loading branch information
Showing
614 changed files
with
9,398 additions
and
9,843 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,93 @@ | ||
require_relative '../spec_helper' | ||
|
||
describe "The --backtrace-limit command line option" do | ||
it "limits top-level backtraces to a given number of entries" do | ||
file = fixture(__FILE__ , "backtrace.rb") | ||
out = ruby_exe(file, options: "--backtrace-limit=2", args: "top 2>&1", exit_status: 1) | ||
out = out.gsub(__dir__, '') | ||
ruby_version_is ""..."3.4" do | ||
it "limits top-level backtraces to a given number of entries" do | ||
file = fixture(__FILE__ , "backtrace.rb") | ||
out = ruby_exe(file, options: "--backtrace-limit=2", args: "top 2>&1", exit_status: 1) | ||
out = out.gsub(__dir__, '') | ||
|
||
out.should == <<-MSG | ||
out.should == <<-MSG | ||
top | ||
/fixtures/backtrace.rb:2:in `a': oops (RuntimeError) | ||
\tfrom /fixtures/backtrace.rb:6:in `b' | ||
\tfrom /fixtures/backtrace.rb:10:in `c' | ||
\t ... 2 levels... | ||
MSG | ||
end | ||
MSG | ||
end | ||
|
||
it "affects Exception#full_message" do | ||
file = fixture(__FILE__ , "backtrace.rb") | ||
out = ruby_exe(file, options: "--backtrace-limit=2", args: "full_message 2>&1") | ||
out = out.gsub(__dir__, '') | ||
it "affects Exception#full_message" do | ||
file = fixture(__FILE__ , "backtrace.rb") | ||
out = ruby_exe(file, options: "--backtrace-limit=2", args: "full_message 2>&1") | ||
out = out.gsub(__dir__, '') | ||
|
||
out.should == <<-MSG | ||
out.should == <<-MSG | ||
full_message | ||
/fixtures/backtrace.rb:2:in `a': oops (RuntimeError) | ||
\tfrom /fixtures/backtrace.rb:6:in `b' | ||
\tfrom /fixtures/backtrace.rb:10:in `c' | ||
\t ... 2 levels... | ||
MSG | ||
end | ||
MSG | ||
end | ||
|
||
it "does not affect Exception#backtrace" do | ||
file = fixture(__FILE__ , "backtrace.rb") | ||
out = ruby_exe(file, options: "--backtrace-limit=2", args: "backtrace 2>&1") | ||
out = out.gsub(__dir__, '') | ||
it "does not affect Exception#backtrace" do | ||
file = fixture(__FILE__ , "backtrace.rb") | ||
out = ruby_exe(file, options: "--backtrace-limit=2", args: "backtrace 2>&1") | ||
out = out.gsub(__dir__, '') | ||
|
||
out.should == <<-MSG | ||
out.should == <<-MSG | ||
backtrace | ||
/fixtures/backtrace.rb:2:in `a' | ||
/fixtures/backtrace.rb:6:in `b' | ||
/fixtures/backtrace.rb:10:in `c' | ||
/fixtures/backtrace.rb:14:in `d' | ||
/fixtures/backtrace.rb:29:in `<main>' | ||
MSG | ||
MSG | ||
end | ||
end | ||
|
||
ruby_version_is "3.4" do | ||
it "limits top-level backtraces to a given number of entries" do | ||
file = fixture(__FILE__ , "backtrace.rb") | ||
out = ruby_exe(file, options: "--backtrace-limit=2", args: "top 2>&1", exit_status: 1) | ||
out = out.gsub(__dir__, '') | ||
|
||
out.should == <<-MSG | ||
top | ||
/fixtures/backtrace.rb:2:in 'Object#a': oops (RuntimeError) | ||
\tfrom /fixtures/backtrace.rb:6:in 'Object#b' | ||
\tfrom /fixtures/backtrace.rb:10:in 'Object#c' | ||
\t ... 2 levels... | ||
MSG | ||
end | ||
|
||
it "affects Exception#full_message" do | ||
file = fixture(__FILE__ , "backtrace.rb") | ||
out = ruby_exe(file, options: "--backtrace-limit=2", args: "full_message 2>&1") | ||
out = out.gsub(__dir__, '') | ||
|
||
out.should == <<-MSG | ||
full_message | ||
/fixtures/backtrace.rb:2:in 'Object#a': oops (RuntimeError) | ||
\tfrom /fixtures/backtrace.rb:6:in 'Object#b' | ||
\tfrom /fixtures/backtrace.rb:10:in 'Object#c' | ||
\t ... 2 levels... | ||
MSG | ||
end | ||
|
||
it "does not affect Exception#backtrace" do | ||
file = fixture(__FILE__ , "backtrace.rb") | ||
out = ruby_exe(file, options: "--backtrace-limit=2", args: "backtrace 2>&1") | ||
out = out.gsub(__dir__, '') | ||
|
||
out.should == <<-MSG | ||
backtrace | ||
/fixtures/backtrace.rb:2:in 'Object#a' | ||
/fixtures/backtrace.rb:6:in 'Object#b' | ||
/fixtures/backtrace.rb:10:in 'Object#c' | ||
/fixtures/backtrace.rb:14:in 'Object#d' | ||
/fixtures/backtrace.rb:29:in '<main>' | ||
MSG | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
require_relative '../../spec_helper' | ||
require_relative 'fixtures/classes' | ||
|
||
ruby_version_is "3.2" do | ||
describe "Enumerable#to_set" do | ||
it "returns a new Set created from self" do | ||
[1, 2, 3].to_set.should == Set[1, 2, 3] | ||
{a: 1, b: 2}.to_set.should == Set[[:b, 2], [:a, 1]] | ||
end | ||
|
||
it "passes down passed blocks" do | ||
[1, 2, 3].to_set { |x| x * x }.should == Set[1, 4, 9] | ||
end | ||
|
||
it "instantiates an object of provided as the first argument set class" do | ||
set = [1, 2, 3].to_set(EnumerableSpecs::SetSubclass) | ||
set.should be_kind_of(EnumerableSpecs::SetSubclass) | ||
set.to_a.sort.should == [1, 2, 3] | ||
end | ||
|
||
it "does not need explicit `require 'set'`" do | ||
output = ruby_exe(<<~RUBY, options: '--disable-gems', args: '2>&1') | ||
puts [1, 2, 3].to_set | ||
RUBY | ||
|
||
output.chomp.should == "#<Set: {1, 2, 3}>" | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.