mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Move spec/rubyspec to spec/ruby for consistency
* Other ruby implementations use the spec/ruby directory. [Misc #13792] [ruby-core:82287] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59979 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
75bfc6440d
commit
1d15d5f080
4370 changed files with 0 additions and 0 deletions
48
spec/ruby/core/encoding/replicate_spec.rb
Normal file
48
spec/ruby/core/encoding/replicate_spec.rb
Normal file
|
@ -0,0 +1,48 @@
|
|||
# -*- encoding: binary -*-
|
||||
require File.expand_path('../../../spec_helper', __FILE__)
|
||||
|
||||
with_feature :encoding do
|
||||
describe "Encoding#replicate" do
|
||||
before :all do
|
||||
@i = 0
|
||||
end
|
||||
|
||||
before :each do
|
||||
@i += 1
|
||||
@prefix = "RS#{@i}"
|
||||
end
|
||||
|
||||
it "returns a replica of ASCII" do
|
||||
name = @prefix + '-ASCII'
|
||||
e = Encoding::ASCII.replicate(name)
|
||||
e.name.should == name
|
||||
"a".force_encoding(e).valid_encoding?.should be_true
|
||||
"\x80".force_encoding(e).valid_encoding?.should be_false
|
||||
end
|
||||
|
||||
it "returns a replica of UTF-8" do
|
||||
name = @prefix + 'UTF-8'
|
||||
e = Encoding::UTF_8.replicate(name)
|
||||
e.name.should == name
|
||||
"a".force_encoding(e).valid_encoding?.should be_true
|
||||
"\u3042".force_encoding(e).valid_encoding?.should be_true
|
||||
"\x80".force_encoding(e).valid_encoding?.should be_false
|
||||
end
|
||||
|
||||
it "returns a replica of UTF-16BE" do
|
||||
name = @prefix + 'UTF-16-BE'
|
||||
e = Encoding::UTF_16BE.replicate(name)
|
||||
e.name.should == name
|
||||
"a".force_encoding(e).valid_encoding?.should be_false
|
||||
"\x30\x42".force_encoding(e).valid_encoding?.should be_true
|
||||
"\x80".force_encoding(e).valid_encoding?.should be_false
|
||||
end
|
||||
|
||||
it "returns a replica of ISO-2022-JP" do
|
||||
name = @prefix + 'ISO-2022-JP'
|
||||
e = Encoding::ISO_2022_JP.replicate(name)
|
||||
e.name.should == name
|
||||
e.dummy?.should be_true
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue