Testing and Tweaking
Learn to create polar grids by using the Recursive Backtracker in Ruby.
We'll cover the following...
The final step
We’re on the final stretch. All that’s left is to test what we’ve got, then tweak one final thing so the finished product looks as good as we can make it.
Our existing polar_grid_test.rb
won’t work right now because we’re instantiating the PolarGrid
with too many arguments. So, we'll create a new test file to run PolarGrid
. ...