Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/goronfreeman/test-blog

Stupid simple blog application to demonstrate testing techniques
https://github.com/goronfreeman/test-blog

Last synced: about 21 hours ago
JSON representation

Stupid simple blog application to demonstrate testing techniques

Awesome Lists containing this project

README

        

# Setup Instructions

1. Install Ruby 2.6.3: `rvm install 2.6`
2. Install Postgresql: `brew install postgresql`
3. Start Postgres: `brew services start postgresql`
4. Create DB: `rails db:create`
5. Run migrations: `rails db:migrate`

# Testing links
* [RSpec](http://rspec.info/)
* [Capybara](https://github.com/teamcapybara/capybara)
* [Shoulda Matchers](https://github.com/thoughtbot/shoulda-matchers)
* [FactoryBot](https://github.com/thoughtbot/factory_bot)
* http://www.betterspecs.org/ - Test writing guidelines