TDD Module 3 Project
Guide Tasks
- Read Tutorial
- Complete the Exercise
Project Requirements
- Create a new Rails application
- Install and configure the RSpec test framework with Capybara.
- Using TDD, build a model called
Sale
with thestring
attributestitle
,description
, and then aninteger
attribute ofqty_available
. - Using BDD build integration specs that ensure that
sale
records can be edited. - You can use the
resource
generator for theSale
system, do not use thescaffold
generator. - There should be at least 10 specs written for this project, including both model and feature specs. All specs need to be passing in order for project to be approved.
- Submit the final version of the code on this guide page. The submission should be a link to a public Github repo page.