Awesome
Learn Test Driven Development with Ruby on Rails
Setup
- Follow these instructions to set up Ruby on Rails
- Clone this repo
mkdir ~/workspace
git clone git@github.com:fsproru/tdd_with_ror ~/workspace/tdd_with_ror
- Setup the project
cd ~/workspace/tdd_with_ror
gem install bundler --version=1.7.9
bundle install
bundle exec rake db:create db:migrate
- Run tests and follow instructions
bundle exec rspec
- Enjoy!