summaryrefslogtreecommitdiff
path: root/spec/rubyspec/core/kernel/printf_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/core/kernel/printf_spec.rb')
-rw-r--r--spec/rubyspec/core/kernel/printf_spec.rb34
1 files changed, 0 insertions, 34 deletions
diff --git a/spec/rubyspec/core/kernel/printf_spec.rb b/spec/rubyspec/core/kernel/printf_spec.rb
deleted file mode 100644
index b4c68fa449..0000000000
--- a/spec/rubyspec/core/kernel/printf_spec.rb
+++ /dev/null
@@ -1,34 +0,0 @@
-require File.expand_path('../../../spec_helper', __FILE__)
-require File.expand_path('../fixtures/classes', __FILE__)
-
-describe "Kernel#printf" do
- it "is a private method" do
- Kernel.should have_private_instance_method(:printf)
- end
-end
-
-describe "Kernel.printf" do
-
- before :each do
- @stdout = $stdout
- @name = tmp("kernel_puts.txt")
- $stdout = new_io @name
- end
-
- after :each do
- $stdout.close
- $stdout = @stdout
- rm_r @name
- end
-
- it "writes to stdout when a string is the first argument" do
- $stdout.should_receive(:write).with("string")
- Kernel.printf("%s", "string")
- end
-
- it "calls write on the first argument when it is not a string" do
- object = mock('io')
- object.should_receive(:write).with("string")
- Kernel.printf(object, "%s", "string")
- end
-end