Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/andreafrancia/game-of-life-test

Acceptance Test for the Game of Life Kata
https://github.com/andreafrancia/game-of-life-test

Last synced: about 1 month ago
JSON representation

Acceptance Test for the Game of Life Kata

Awesome Lists containing this project

README

        

Test di accettazione per il Game of Life
========================================

Per avviare il test::

./test

Quando passa non dice niente e l'EXIT code é 0, esempio:

$ ./test ./fake
$ echo $?
0

Quando non passa riporta le differenze:

$ ./test ./fake-bad
--- - 2012-03-28 01:03:00.000000000 +0200
+++ /dev/fd/63 2012-03-28 01:03:00.000000000 +0200
@@ -1,6 +1,6 @@
Generation 2:
4 8
........
-...**...
-...**...
+........
+........
........
$ echo $?
1

-EOF