| Age | Commit message (Collapse) | Author |
|
Running exercise 7's tests would also run exercise 8s test because the
regex matcher caught anything with `Table` in it. Make the test name for
the ex 7 block a little more specific so that we're only running ex 7s
tests when we try to do so.
|
|
I just assumed you needed backslash line continuation markers when
creating arrays in Bash. Turns out I was wrong and they're not needed.
Remove them because in addition the the preceding they're also an
eyesore.
|
|
Make it easy for learners to run the tests for a single exercise.
Otherwise, calling
ruby exercises_spec.rb
would run all the tests, producing error output for exercises we haven't
even written yet. This allows us to run the appropriate tests as needed.
|