aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/string_spec.rb
diff options
context:
space:
mode:
authorMike McQuaid2017-10-20 14:10:50 +0100
committerGitHub2017-10-20 14:10:50 +0100
commit76cd7c79498daf380d99ed7379394618164b602b (patch)
tree3c4be45df3b0a4d011422064c084f3e80fba80f7 /Library/Homebrew/test/string_spec.rb
parenta2374cba6cf9a56897f5feeab7f4add661d3c287 (diff)
parent487bec957007612956ff97b3912f88768becaa32 (diff)
downloadbrew-76cd7c79498daf380d99ed7379394618164b602b.tar.bz2
Merge pull request #3319 from reitermarkus/squiggly-heredocs
Use “squiggly” heredocs.
Diffstat (limited to 'Library/Homebrew/test/string_spec.rb')
-rw-r--r--Library/Homebrew/test/string_spec.rb36
1 files changed, 0 insertions, 36 deletions
diff --git a/Library/Homebrew/test/string_spec.rb b/Library/Homebrew/test/string_spec.rb
index ce26d70d4..6de89dc99 100644
--- a/Library/Homebrew/test/string_spec.rb
+++ b/Library/Homebrew/test/string_spec.rb
@@ -1,41 +1,5 @@
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" }