asadakbar / railsconf_intro_track

Solution code for TDD Workshop

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RailsConf 2013 Intro Track

Source for the application used in the April 2013, 2013 RailsConf talk:

Test-Driven Development: Tools, Techniques, and Discipline

Setup

Fork the repo and the clone it to your local system:

git clone git@github.com:YOUR_USER_NAME/railsconf_intro_track.git
cd railsconf_intro_track
./bin/setup

Run Locally

Run the web server:

foreman start

Access the site in a web browser http://localhost:5000

Test Suite

RSpec directory structure:

spec
├── features
├── helpers
├── models
├── spec_helper.rb
└── views

Run the specs:

rspec

Cheat Sheets (pdf)

RSpec

RSpec Matchers

RSpec Acceptance

Shoulda Matchers

Capybara

Presenters

Written by Harlow Ward and Adarsh Pandit

About

Solution code for TDD Workshop