summaryrefslogtreecommitdiff
path: root/spec/ruby/library/stringio/shared/tell.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/stringio/shared/tell.rb')
-rw-r--r--spec/ruby/library/stringio/shared/tell.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/spec/ruby/library/stringio/shared/tell.rb b/spec/ruby/library/stringio/shared/tell.rb
deleted file mode 100644
index 852c51c192..0000000000
--- a/spec/ruby/library/stringio/shared/tell.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-describe :stringio_tell, shared: true do
- before :each do
- @io = StringIOSpecs.build
- end
-
- it "returns the current byte offset" do
- @io.getc
- @io.send(@method).should == 1
- @io.read(7)
- @io.send(@method).should == 8
- end
-end