aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/string_spec.rb
blob: ce26d70d446f9d4cab76d501aa88ba2f848e6a30 (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
require "extend/string"

describe String do
  describe "#undent" do
    it "removes leading whitespace, taking the first line as reference" do
      string = <<-EOS.unindent
                hi
                ........my friend over
                  there
      EOS

      expect(string).to eq("hi\n........my friend over\n  there\n")
    end

    it "removes nothing if the text is not indented" do
      string = <<-EOS.unindent
        hi
        I'm not indented
      EOS

      expect(string).to eq("hi\nI'm not indented\n")
    end

    it "can be nested" do
      nested_string = <<-EOS.undent
        goodbye
      EOS

      string = <<-EOS.undent
        hello
        #{nested_string}
      EOS

      expect(string).to eq("hello\ngoodbye\n\n")
    end
  end
end

describe StringInreplaceExtension do
  subject { string.extend(described_class) }
  let(:string) { "foobar" }

  describe "#sub!" do
    it "adds an error to #errors when no replacement was made" do
      subject.sub! "not here", "test"
      expect(subject.errors).to eq(['expected replacement of "not here" with "test"'])
    end
  end
end