#ruby
Read more stories on Hashnode
Articles with this tag
Testing doubles, Mocks, Stubs and Spies describe Oystercard do let(:entry_station) { double :station } let(:exit_station) { double :station...
Encapsulation We break our programs up into multiple objects to control complexity. So how do we decide which methods and variables should live in...
Feature Test Tests that all the different parts of the system work together well. Tests that implement such user stories are feature tests. These...
#docking_station_spec.rb require 'docking_station' describe DockingStation do let(:station) { DockingStation.new } describe '#release_bike'...
Following on from my learning I have also looked at classes and methods which is beginning to look very useful! Methods First great thing about method...
This week was primarily focusing on continuing learning Ruby and going through solving quizzes based on our learning. Arrays Arrays are indexed...