summaryrefslogtreecommitdiff
path: root/spec/ruby/library/scanf/string/shared
diff options
context:
space:
mode:
authorHiroshi SHIBATA <[email protected]>2019-09-20 12:42:53 +0900
committerHiroshi SHIBATA <[email protected]>2019-09-20 12:43:11 +0900
commit67a6662032d0a7c4af07f44c2046cd0ed2d7d253 (patch)
treec792dabafbd7c5928fe7dbc55def8e47e4d11416 /spec/ruby/library/scanf/string/shared
parenta3b85016149f4f73f08c739626b2f02badd5ad17 (diff)
Removed Scanf from the ruby repository.
Diffstat (limited to 'spec/ruby/library/scanf/string/shared')
-rw-r--r--spec/ruby/library/scanf/string/shared/block_scanf.rb25
1 files changed, 0 insertions, 25 deletions
diff --git a/spec/ruby/library/scanf/string/shared/block_scanf.rb b/spec/ruby/library/scanf/string/shared/block_scanf.rb
deleted file mode 100644
index 25ab3f442a..0000000000
--- a/spec/ruby/library/scanf/string/shared/block_scanf.rb
+++ /dev/null
@@ -1,25 +0,0 @@
-require 'scanf'
-
-describe :scanf_string_block_scanf, shared: true do
- it "passes each match to the block as an array" do
- a = []
- "hello world".send(@method, "%s%s"){|w| a << w}
- a.should == [["hello", "world"]]
- end
-
- it "keeps scanning the input and cycling back to the beginning of the input string" do
- a = []
- "hello world".send(@method, "%s"){|w| a << w}
- a.should == [["hello"], ["world"]]
-
- string = "123 abc 456 def 789 ghi"
- s = string.send(@method, "%d%s"){|num,str| [num * 2, str.upcase]}
- s.should == [[246, "ABC"], [912, "DEF"], [1578, "GHI"]]
- end
-
- it "returns an empty array when a wrong specifier is passed" do
- a = []
- "hello world".send(@method, "%z"){|w| a << w}
- a.empty?.should be_true
- end
-end