== README
This is an empty Rails app that contains tests for a very simple online store. Go through the following two tutorials and learn to build your first Rails app:
When you finish a section, enter rake test
in your terminal to run the tests. The tests are configured to run in order and stop at the first failed test. If you pass all the tests you're supposed to - great! You can go on in the tutorial and continue passing tests. Otherwise, review the tutorial or look at the failed test and try to determine your error. If you're stuck, add a comment to the bottom of the Learneroo tutorial.
See the second git commit for the steps to create this app. Here are some brief instructions:
- Run
rails new your-app-name
- Add
config.generators.test_framework false
to application.rb - Update the gemfile: add two gems for Heroku, move sqlite3 to development, and add two new gems to development: minitest-fail-fast and learneroo-gem.
- Copy the tests from this app to your own app's test folder.
- Add two lines near the top of test_helper:
require 'minitest/fail_fast'
require 'learneroo_gem'