Sha256: 3222b998d4793066524a130c11990fdb262005d56701dce01890a27831dbd3a1
Contents?: true
Size: 390 Bytes
Versions: 3
Compression:
Stored size: 390 Bytes
Contents
#! /usr/bin/env ruby # coding: utf-8 require File.expand_path(File.dirname(__FILE__) + '/spec_helper') require "string_width.rb" describe String, "for width in displayed terminal" do it do "abc".width .should == 3 "あいう".width .should == 6 "あaいbうc".width .should == 9 "’".width .should == 1 "”".width .should == 1 end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
builtinextension-0.0.5 | spec/string_width_spec.rb |
builtinextension-0.0.4 | spec/string_width_spec.rb |
builtinextension-0.0.3 | spec/string_width_spec.rb |