An open API service indexing awesome lists of open source software.

https://github.com/grodowski/tdd_stack_demo

A Demo App for TDD workshops: a Stack implementation - test driven with rspec
https://github.com/grodowski/tdd_stack_demo

Last synced: 2 months ago
JSON representation

A Demo App for TDD workshops: a Stack implementation - test driven with rspec

Awesome Lists containing this project

README

          

Stack
==============

Create a Stack class that supports the following public interface:

0. Stack#size returns the stack size,
1. Stack#push(element) adds an arbitrary object to the stack and increases the stack size by 1,
2. Stack#pop removes the top element of the stack and decreases the size.