Sha256: 27a3849ce83ca6babe4844ea3157fed10aa056b19994296c8bfc8f1545d8f57d

Contents?: true

Size: 1.28 KB

Versions: 1

Compression:

Stored size: 1.28 KB

Contents

# Airport at home
# * should always work
# * not need cables
# * not need electricity
# BDD framework
# * should be adopted quickly
# * should be intuitive
# A FileAccessor
# * should open a file and pass it to the processor's process method
# An IoProcessor
# * should raise nothing when the file is exactly 32 bytes
# * should raise an exception when the file length is less than 32 bytes
# Mocker
# * should be able to call mock()
# An empty stack
# * should accept an item when sent push
# * should complain when sent top
# * should complain when sent pop
# A stack with one item
# * should accept an item when sent push
# * should return top when sent top
# * should not remove top when sent top
# * should return top when sent pop
# * should remove top when sent pop
# An almost full stack (with one item less than capacity)
# * should accept an item when sent push
# * should return top when sent top
# * should not remove top when sent top
# * should return top when sent pop
# * should remove top when sent pop
# A full stack
# * should complain on push
# * should return top when sent top
# * should not remove top when sent top
# * should return top when sent pop
# * should remove top when sent pop
# Underscore sugar
# * should be available for regular objects
# * should be available for mocks

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rspec-0.5.14 EXAMPLES.rd