AncientMock

A simple mock object library that I build on stage at Ancient City Ruby.

Do not use in production! It was an academic exercise meant to teach the basics of building a mock object library.

Installation

# Gemfile
gem 'ancient_mock'

Usage

warehouse = Object.new

# Stub
allow(warhouse).to receive(:full?).and_return(true)
warehouse.full? # => true

# Mock
item_id = 1234
expect(warehouse).to receive(:remove).with(item_id)
# warehouse.remove(1234) must be called

Tests

bundle exec rake