Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/goronfreeman/test-blog
- Owner: goronfreeman
- Created: 2019-08-13T16:28:39.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T14:25:24.000Z (almost 2 years ago)
- Last Synced: 2023-02-27T16:36:55.159Z (over 1 year ago)
- Language: Ruby
- Size: 71.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
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