mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Update to ruby/spec@007e908
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64571 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
58689fa747
commit
2dca35b9b1
4 changed files with 24 additions and 21 deletions
|
@ -57,10 +57,9 @@ describe 'The -K command line option' do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
platform_is_not :windows do
|
it "ignores unknown codes" do
|
||||||
it "ignores unknown codes" do
|
locale = Encoding.find('locale')
|
||||||
ruby_exe(@test_string, options: '-KZ').should ==
|
ruby_exe(@test_string, options: '-KZ').should ==
|
||||||
[Encoding::UTF_8.name, Encoding::UTF_8.name, nil].inspect
|
[Encoding::UTF_8.name, locale.name, nil].inspect
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Binary file not shown.
|
@ -2,8 +2,12 @@ require_relative '../spec_helper'
|
||||||
|
|
||||||
# See core/kernel/eval_spec.rb for more magic comments specs for eval()
|
# See core/kernel/eval_spec.rb for more magic comments specs for eval()
|
||||||
describe :magic_comments, shared: true do
|
describe :magic_comments, shared: true do
|
||||||
|
before :each do
|
||||||
|
@default = @method == :locale ? Encoding.find('locale') : Encoding::UTF_8
|
||||||
|
end
|
||||||
|
|
||||||
it "are optional" do
|
it "are optional" do
|
||||||
@object.call('no_magic_comment.rb').should == Encoding::UTF_8.name
|
@object.call('no_magic_comment.rb').should == @default.name
|
||||||
end
|
end
|
||||||
|
|
||||||
it "are case-insensitive" do
|
it "are case-insensitive" do
|
||||||
|
@ -11,11 +15,11 @@ describe :magic_comments, shared: true do
|
||||||
end
|
end
|
||||||
|
|
||||||
it "must be at the first line" do
|
it "must be at the first line" do
|
||||||
@object.call('second_line_magic_comment.rb').should == Encoding::UTF_8.name
|
@object.call('second_line_magic_comment.rb').should == @default.name
|
||||||
end
|
end
|
||||||
|
|
||||||
it "must be the first token of the line" do
|
it "must be the first token of the line" do
|
||||||
@object.call('second_token_magic_comment.rb').should == Encoding::UTF_8.name
|
@object.call('second_token_magic_comment.rb').should == @default.name
|
||||||
end
|
end
|
||||||
|
|
||||||
it "can be after the shebang" do
|
it "can be after the shebang" do
|
||||||
|
@ -40,16 +44,16 @@ describe :magic_comments, shared: true do
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "Magic comments" do
|
describe "Magic comments" do
|
||||||
platform_is_not :windows do
|
describe "in stdin" do
|
||||||
describe "in stdin" do
|
it_behaves_like :magic_comments, :locale, -> file {
|
||||||
it_behaves_like :magic_comments, nil, -> file {
|
print_at_exit = fixture(__FILE__, "print_magic_comment_result_at_exit.rb")
|
||||||
print_at_exit = fixture(__FILE__, "print_magic_comment_result_at_exit.rb")
|
ruby_exe(nil, args: "< #{fixture(__FILE__, file)}", options: "-r#{print_at_exit}")
|
||||||
ruby_exe(nil, args: "< #{fixture(__FILE__, file)}", options: "-r#{print_at_exit}")
|
}
|
||||||
}
|
end
|
||||||
end
|
|
||||||
|
|
||||||
|
platform_is_not :windows do
|
||||||
describe "in an -e argument" do
|
describe "in an -e argument" do
|
||||||
it_behaves_like :magic_comments, nil, -> file {
|
it_behaves_like :magic_comments, :locale, -> file {
|
||||||
print_at_exit = fixture(__FILE__, "print_magic_comment_result_at_exit.rb")
|
print_at_exit = fixture(__FILE__, "print_magic_comment_result_at_exit.rb")
|
||||||
# Use UTF-8, as it is the default source encoding for files
|
# Use UTF-8, as it is the default source encoding for files
|
||||||
code = File.read(fixture(__FILE__, file), encoding: 'utf-8')
|
code = File.read(fixture(__FILE__, file), encoding: 'utf-8')
|
||||||
|
@ -59,28 +63,28 @@ describe "Magic comments" do
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "in the main file" do
|
describe "in the main file" do
|
||||||
it_behaves_like :magic_comments, nil, -> file {
|
it_behaves_like :magic_comments, :UTF8, -> file {
|
||||||
print_at_exit = fixture(__FILE__, "print_magic_comment_result_at_exit.rb")
|
print_at_exit = fixture(__FILE__, "print_magic_comment_result_at_exit.rb")
|
||||||
ruby_exe(fixture(__FILE__, file), options: "-r#{print_at_exit}")
|
ruby_exe(fixture(__FILE__, file), options: "-r#{print_at_exit}")
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "in a loaded file" do
|
describe "in a loaded file" do
|
||||||
it_behaves_like :magic_comments, nil, -> file {
|
it_behaves_like :magic_comments, :UTF8, -> file {
|
||||||
load fixture(__FILE__, file)
|
load fixture(__FILE__, file)
|
||||||
$magic_comment_result
|
$magic_comment_result
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "in a required file" do
|
describe "in a required file" do
|
||||||
it_behaves_like :magic_comments, nil, -> file {
|
it_behaves_like :magic_comments, :UTF8, -> file {
|
||||||
require fixture(__FILE__, file)
|
require fixture(__FILE__, file)
|
||||||
$magic_comment_result
|
$magic_comment_result
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "in an eval" do
|
describe "in an eval" do
|
||||||
it_behaves_like :magic_comments, nil, -> file {
|
it_behaves_like :magic_comments, :UTF8, -> file {
|
||||||
# Use UTF-8, as it is the default source encoding for files
|
# Use UTF-8, as it is the default source encoding for files
|
||||||
eval(File.read(fixture(__FILE__, file), encoding: 'utf-8'))
|
eval(File.read(fixture(__FILE__, file), encoding: 'utf-8'))
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,7 +33,7 @@ describe "The DATA constant" do
|
||||||
|
|
||||||
it "is set even if there is no newline after __END__" do
|
it "is set even if there is no newline after __END__" do
|
||||||
path = tmp("no_newline_data.rb")
|
path = tmp("no_newline_data.rb")
|
||||||
code = File.read(fixture(__FILE__, "empty_data.rb"))
|
code = File.binread(fixture(__FILE__, "empty_data.rb"))
|
||||||
touch(path) { |f| f.write code.chomp }
|
touch(path) { |f| f.write code.chomp }
|
||||||
begin
|
begin
|
||||||
ruby_exe(path).should == "30\n\"\"\n"
|
ruby_exe(path).should == "30\n\"\"\n"
|
||||||
|
|
Loading…
Reference in a new issue