summaryrefslogtreecommitdiff
path: root/spec/ruby/core/string/b_spec.rb
blob: 638971f9ce7e5974b40cfe52d001493bda033aa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
require_relative '../../spec_helper'

describe "String#b" do
  it "returns an ASCII-8BIT encoded string" do
    "Hello".b.should == "Hello".force_encoding(Encoding::ASCII_8BIT)
    "こんちには".b.should == "こんちには".force_encoding(Encoding::ASCII_8BIT)
  end

  it "returns new string without modifying self" do
    str = "こんちには"
    str.b.should_not equal(str)
    str.should == "こんちには"
  end

  it "copies own tainted/untrusted status to the returning value" do
    utf_8 = "こんちには".taint.untrust
    ret = utf_8.b
    ret.tainted?.should be_true
    ret.untrusted?.should be_true
  end
end