This project has four separate problems, with four separate spec files. Run them in the following order:
00_silly_blocks_spec.rb
01_performance_monitor_spec.rb
02_eval_block_spec.rb
03_iteration_spec.rb
Instructions for each problem are in the spec file.
Remember, the way you run the tests is by navigating to the project's root
directory (the directory with the README
, the lib
folder, and the spec
folder) and running bundle exec rspec
in terminal.
You can run just the specs in a single spec file by running bundle exec rspec file_name.rb
in terminal (e.g., bundle exec rspec hello_spec.rb
).
You can run just one spec or set of specs by running bundle exec rspec file_name.rb:line_number
in terminal (e.g., bundle exec rspec hello_spec.rb:3
).