Fizzbuzz

An introduction to Ruby and Rspec testing.

Write a simple program that you can run from the command line and return "Fizz" if a number is divisible by 3, "Buzz" if a number is divisible by 5, and "Fizzbuzz" if a number is divisible by 15.

Technologies used:

  • Ruby
  • RSpec

How to run tests:

$ git clone https://github.com/imarkwick/fizzbuzz.git
$ cd fizzbuzz
$ rspec