Makers Week 1 challenge to work towards some goals as below:
- I write code that is easy to challenge
- I can test-drive my code
- I can build with objects
- I know how my language works
Fork and clone to your local environment
Install and initiate rspec
gem install rspec
rspec --init
Either use
rspec
or
rspec path/to/spec_file.rb
- Patrick Harris - Initial work - TinyGobby
- Alexandra Dresco - Initial work - AlexDresco
load './lib/docking_station.rb' station = DockingStation.new first_bike = station.release_bike station.store == [] station.dock_bike(first_bike) == [first_bike]