Stringio as file

StringIO can be used as a standin for a File object when testing, right?

require 'stringio'

def expects_file file
  file.open
  puts file.gets
end

s = StringIO.new "Hello World\nHow are you?"
expects_file s

What don't I understand here?

Ah, nevermind. I forgot File.open is a class method.

···

On 8/26/05, Joe Van Dyk <joevandyk@gmail.com> wrote:

StringIO can be used as a standin for a File object when testing, right?

require 'stringio'

def expects_file file
  file.open
  puts file.gets
end

s = StringIO.new "Hello World\nHow are you?"
expects_file s

What don't I understand here?

This still confuses me though:

require 'stringio'

a = StringIO.new
a << "Hello\n"
a << "World"

puts a.gets # prints nil

···

On 8/26/05, Joe Van Dyk <joevandyk@gmail.com> wrote:

On 8/26/05, Joe Van Dyk <joevandyk@gmail.com> wrote:
> StringIO can be used as a standin for a File object when testing, right?
>
> require 'stringio'
>
> def expects_file file
> file.open
> puts file.gets
> end
>
> s = StringIO.new "Hello World\nHow are you?"
> expects_file s
>
> What don't I understand here?

Ah, nevermind. I forgot File.open is a class method.

> > StringIO can be used as a standin for a File object when testing, right?
> >
> > require 'stringio'
> >
> > def expects_file file
> > file.open
> > puts file.gets
> > end
> >
> > s = StringIO.new "Hello World\nHow are you?"
> > expects_file s
> >
> > What don't I understand here?
>
> Ah, nevermind. I forgot File.open is a class method.

This still confuses me though:

require 'stringio'

a = StringIO.new
a << "Hello\n"
a << "World"

try something along the lines of:
a.rewind

puts a.gets # prints nil

I would recommend you check the rdocs and see a.methods.sort

Brian.

···

On 8/26/05, Joe Van Dyk <joevandyk@gmail.com> wrote:

On 8/26/05, Joe Van Dyk <joevandyk@gmail.com> wrote:
> On 8/26/05, Joe Van Dyk <joevandyk@gmail.com> wrote:

And further confusion:

require 'stringio'

a = StringIO.new
a << "Hello\n"
a << "World"
puts "a: #{ a.gets }"

b = StringIO.new "Hello\nWorld"
puts "b: #{ b.gets }"

Results in:
a:
b: Hello
         
So it appears that StringIO#<< isn't doing what I think it should be
doing. There's not much documentation on that method at ruby-doc.org
or in the Pickaxe2 book.

···

On 8/26/05, Joe Van Dyk <joevandyk@gmail.com> wrote:

On 8/26/05, Joe Van Dyk <joevandyk@gmail.com> wrote:
> On 8/26/05, Joe Van Dyk <joevandyk@gmail.com> wrote:
> > StringIO can be used as a standin for a File object when testing, right?
> >
> > require 'stringio'
> >
> > def expects_file file
> > file.open
> > puts file.gets
> > end
> >
> > s = StringIO.new "Hello World\nHow are you?"
> > expects_file s
> >
> > What don't I understand here?
>
> Ah, nevermind. I forgot File.open is a class method.

This still confuses me though:

require 'stringio'

a = StringIO.new
a << "Hello\n"
a << "World"

puts a.gets # prints nil

Hi,

At Sat, 27 Aug 2005 06:43:29 +0900,
Joe Van Dyk wrote in [ruby-talk:153769]:

This still confuses me though:

require 'stringio'

a = StringIO.new
a << "Hello\n"
a << "World"

  a.rewind

···

puts a.gets # prints nil

--
Nobu Nakada

Doh, that clears it up. Thanks!

···

On 8/26/05, Brian Mitchell <binary42@gmail.com> wrote:

On 8/26/05, Joe Van Dyk <joevandyk@gmail.com> wrote:
> On 8/26/05, Joe Van Dyk <joevandyk@gmail.com> wrote:
> > On 8/26/05, Joe Van Dyk <joevandyk@gmail.com> wrote:
> > > StringIO can be used as a standin for a File object when testing, right?
> > >
> > > require 'stringio'
> > >
> > > def expects_file file
> > > file.open
> > > puts file.gets
> > > end
> > >
> > > s = StringIO.new "Hello World\nHow are you?"
> > > expects_file s
> > >
> > > What don't I understand here?
> >
> > Ah, nevermind. I forgot File.open is a class method.
>
> This still confuses me though:
>
> require 'stringio'
>
> a = StringIO.new
> a << "Hello\n"
> a << "World"
>

try something along the lines of:
a.rewind