Skip to content

Commit

Permalink
Remove outdated testing instructions from exercises, but keep the goo…
Browse files Browse the repository at this point in the history
…d stuff.
  • Loading branch information
glennj committed Sep 30, 2023
1 parent d7e5e36 commit 94f38ef
Show file tree
Hide file tree
Showing 22 changed files with 22 additions and 315 deletions.
15 changes: 0 additions & 15 deletions exercises/practice/acronym/.docs/instructions.append.md

This file was deleted.

15 changes: 0 additions & 15 deletions exercises/practice/affine-cipher/.docs/instructions.append.md

This file was deleted.

15 changes: 0 additions & 15 deletions exercises/practice/armstrong-numbers/.docs/instructions.append.md

This file was deleted.

15 changes: 0 additions & 15 deletions exercises/practice/bob/.docs/instructions.append.md

This file was deleted.

15 changes: 0 additions & 15 deletions exercises/practice/collatz-conjecture/.docs/instructions.append.md

This file was deleted.

15 changes: 0 additions & 15 deletions exercises/practice/gigasecond/.docs/instructions.append.md

This file was deleted.

15 changes: 0 additions & 15 deletions exercises/practice/hamming/.docs/instructions.append.md

This file was deleted.

15 changes: 0 additions & 15 deletions exercises/practice/hello-world/.docs/instructions.append.md

This file was deleted.

15 changes: 0 additions & 15 deletions exercises/practice/isogram/.docs/instructions.append.md

This file was deleted.

15 changes: 0 additions & 15 deletions exercises/practice/leap/.docs/instructions.append.md

This file was deleted.

15 changes: 0 additions & 15 deletions exercises/practice/luhn/.docs/instructions.append.md

This file was deleted.

15 changes: 0 additions & 15 deletions exercises/practice/pangram/.docs/instructions.append.md

This file was deleted.

This file was deleted.

15 changes: 0 additions & 15 deletions exercises/practice/raindrops/.docs/instructions.append.md

This file was deleted.

15 changes: 0 additions & 15 deletions exercises/practice/reverse-string/.docs/instructions.append.md

This file was deleted.

15 changes: 0 additions & 15 deletions exercises/practice/roman-numerals/.docs/instructions.append.md

This file was deleted.

15 changes: 0 additions & 15 deletions exercises/practice/triangle/.docs/instructions.append.md

This file was deleted.

15 changes: 0 additions & 15 deletions exercises/practice/trinary/.docs/instructions.append.md

This file was deleted.

15 changes: 0 additions & 15 deletions exercises/practice/two-fer/.docs/instructions.append.md

This file was deleted.

15 changes: 0 additions & 15 deletions exercises/practice/word-count/.docs/instructions.append.md

This file was deleted.

15 changes: 0 additions & 15 deletions exercises/practice/yacht/.docs/instructions.append.md

This file was deleted.

22 changes: 22 additions & 0 deletions exercises/shared/.docs/tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,28 @@ Linux or macOS:
/path/to/8th test.8th
```

## Testing in the REPL

Start 8th, loading test-words.8th:

```sh
8th -f test-words.8th
```

This will start a CLI session where, once you’ve written some code in your solution file, you can load it into the REPL.
For example, for the "word-count" exercise, you would enter:

```8th
"word-count.8th" f:include
```

And you can run the tests with
```sh
"word-count-tests.8th" f:include
```

Or you can copy and paste a single test from that file or enter your own.

## Skipped tests

Solving an exercise means making all its tests pass.
Expand Down

0 comments on commit 94f38ef

Please sign in to comment.