#Setting Up RSpec
gem install rspec- In the project root set up the following file structure:
spec/lib/class_spec.rblib/class.rb goes in lib
- Configure RSpec for color tests. In the root folder
touch .rspecand insert "--color" - To reference our classes, tests files need this at the top
require_relative '../../lib/class.rb' - To run the test type
rspec specfrom the root directory