summaryrefslogtreecommitdiff
path: root/spec/ruby/core/symbol/length_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/symbol/length_spec.rb')
-rw-r--r--spec/ruby/core/symbol/length_spec.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/spec/ruby/core/symbol/length_spec.rb b/spec/ruby/core/symbol/length_spec.rb
new file mode 100644
index 0000000000..29dd4ad46b
--- /dev/null
+++ b/spec/ruby/core/symbol/length_spec.rb
@@ -0,0 +1,23 @@
+require_relative '../../spec_helper'
+
+describe "Symbol#length" do
+ it "returns 0 for empty name" do
+ :''.length.should == 0
+ end
+
+ it "returns 1 for name formed by a NUL character" do
+ :"\x00".length.should == 1
+ end
+
+ it "returns 3 for name formed by 3 ASCII characters" do
+ :one.length.should == 3
+ end
+
+ it "returns 4 for name formed by 4 ASCII characters" do
+ :four.length.should == 4
+ end
+
+ it "returns 4 for name formed by 1 multibyte and 3 ASCII characters" do
+ :"\xC3\x9Cber".length.should == 4
+ end
+end