Skip to content

TDD and refactoring sample application written in python

Notifications You must be signed in to change notification settings

dagett/gomoku_python

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gomoku_python

An example application for experimenting with TDD and refactoring

Setup

You will need to install Python 2.7

virtualenv

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

pygame

Install Pygame first to run this program
(virt_env)$ pip install pygame

Running

(virt_env)$ cd app; python main.py

Test

(virt_env)$ python -m unittest test.test_gomoku

About

TDD and refactoring sample application written in python

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%