aboutsummaryrefslogtreecommitdiffstats
path: root/run_test.sh
AgeCommit message (Collapse)Author
2015-05-30Fix `./run_test.sh 7`Teddy Wing
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.
2015-05-30run_test.sh: Remove unnecessary backslashesTeddy Wing
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.
2015-05-25Create run_test.sh that will run tests for a single exerciseTeddy Wing
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.