An example application for experimenting with TDD and refactoring
You will need to install Python 2.7
virtualenv is a tool to create isolated Python environments.
virtualenv creates a folder which contains all the necessary
executables to use the packages that a Python project would need.
$ pip install virtualenv
$ mkdir tdd_kurs; cd tdd_kurs
$ git clone [email protected]:Softhouse/gomoku_python.git
$ virtualenv my_virtenv
$ source my_virtenv/bin/activate
Install Pygame first to run this program
(virt_env)$ pip install pygame
(virt_env)$ cd app; python main.py
(virt_env)$ python -m unittest test.test_gomoku