Sha256: 06eaa74212a12f7bc276e80d366648437730e5b2ee235989c87009c0fce94e6d

Contents?: true

Size: 1.67 KB

Versions: 6

Compression:

Stored size: 1.67 KB

Contents

require File.dirname(__FILE__) + '/spec_helper'
require File.dirname(__FILE__) + '/file_accessor'
require 'stringio'

context "A FileAccessor" do
  # This sequence diagram illustrates what this spec specifies.
  #
  #                  +--------------+     +----------+     +-------------+
  #                  | FileAccessor |     | Pathname |     | IoProcessor |
  #                  +--------------+     +----------+     +-------------+
  #                         |                  |                  |
  #   open_and_handle_with  |                  |                  |
  #   -------------------->| |           open  |                  |
  #                        | |--------------->| |                 |
  #                        | | io             | |                 |
  #                        | |<...............| |                 |
  #                        | |                 |     process(io)  |
  #                        | |---------------------------------->| |
  #                        | |                 |                 | |
  #                        | |<..................................| |
  #                         |                  |                  |
  #
  specify "should open a file and pass it to the processor's process method" do
    # This is the primary actor
    accessor = FileAccessor.new

    # These are the primary actor's neighbours, which we mock.
    file = mock "Pathname"
    io_processor = mock "IoProcessor"
    
    io = StringIO.new "whatever"
    file.should_receive(:open).and_yield io
    io_processor.should_receive(:process).with(io)
    
    accessor.open_and_handle_with(file, io_processor)
  end

end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
riess-0.0.8 vendor/rspec-0.8.2/examples/file_accessor_spec.rb
rspec-0.8.1 examples/file_accessor_spec.rb
rspec-0.7.5 examples/file_accessor_spec.rb
rspec-0.7.5.1 examples/file_accessor_spec.rb
rspec-0.8.0 examples/file_accessor_spec.rb
rspec-0.8.2 examples/file_accessor_spec.rb