summaryrefslogtreecommitdiff
path: root/spec/ruby/core/string/chilled_string_spec.rb
blob: 8de4fc421b4765cfda5588e8e8bbeadab428782e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
require_relative '../../spec_helper'

describe "chilled String" do
  guard -> { ruby_version_is "3.4" and !"test".equal?("test") } do
    describe "#frozen?" do
      it "returns true" do
        "chilled".frozen?.should == true
      end
    end

    describe "#-@" do
      it "returns a different instance" do
        input = "chilled"
        interned = (-input)
        interned.frozen?.should == true
        interned.object_id.should_not == input.object_id
      end
    end

    describe "#+@" do
      it "returns a different instance" do
        input = "chilled"
        duped = (+input)
        duped.frozen?.should == false
        duped.object_id.should_not == input.object_id
      end
    end

    describe "#clone" do
      it "preserves chilled status" do
        input = "chilled".clone
        -> {
          input << "-mutated"
        }.should complain(/literal string will be frozen in the future/)
        input.should == "chilled-mutated"
      end
    end

    describe "mutation" do
      it "emits a warning" do
        input = "chilled"
        -> {
          input << "-mutated"
        }.should complain(/literal string will be frozen in the future/)
        input.should == "chilled-mutated"
      end

      it "emits a warning on singleton_class creaation" do
        -> {
          "chilled".singleton_class
        }.should complain(/literal string will be frozen in the future/)
      end

      it "emits a warning on instance variable assignment" do
        -> {
          "chilled".instance_variable_set(:@ivar, 42)
        }.should complain(/literal string will be frozen in the future/)
      end

      it "raises FrozenError after the string was explictly frozen" do
        input = "chilled"
        input.freeze
        -> {
          input << "mutated"
        }.should raise_error(FrozenError)
      end
    end
  end
end