Sha256: dc363476d59717b79438460f330c5b1f64a144099d817df38c30ce750d475396

Contents?: true

Size: 1.05 KB

Versions: 9

Compression:

Stored size: 1.05 KB

Contents

# Airport at home
# * should always work
# * not need cables
# * not need electricity
# BDD framework
# * should be adopted quickly
# * should be intuitive
# 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

9 entries across 9 versions & 1 rubygems

Version Path
rspec-0.5.10 EXAMPLES.rd
rspec-0.5.12 EXAMPLES.rd
rspec-0.5.11 EXAMPLES.rd
rspec-0.5.8 EXAMPLES.rd
rspec-0.5.7 EXAMPLES.rd
rspec-0.5.9 EXAMPLES.rd
rspec-0.5.5 EXAMPLES.rd
rspec-0.5.13 EXAMPLES.rd
rspec-0.5.6 EXAMPLES.rd