FizzBuzz Challenge in Python

This is a solution to Makers Academy's FizzBuzz Challenge.

This solution uses a test-driven approach, with tests implemented using unittest.

A solution is also available in Ruby, JavaScript, PHP and C++.

This uses Python 2.7.11, which can be installed here.

##Usage

The repository should be cloned and the directory changed into:

$ git clone git@github.com:Andrew47/fizzbuzz-Python.git
$ cd fizzbuzz-Python

Open the command line, and run following:

$ python
>>> from fizz_buzz import FizzBuzz
>>> game = FizzBuzz()
>>> game.play(3)

This will return 'Fizz'. Replace 3 with another integer to get different return values.

##Author