https://github.com/vicentereig/coveralia
Sample Rails 3.2.6 app to give a shot to Steak/RSpec acceptance tests
https://github.com/vicentereig/coveralia
Last synced: about 1 month ago
JSON representation
Sample Rails 3.2.6 app to give a shot to Steak/RSpec acceptance tests
- Host: GitHub
- URL: https://github.com/vicentereig/coveralia
- Owner: vicentereig
- Created: 2012-06-23T22:33:04.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2012-06-23T22:42:06.000Z (almost 13 years ago)
- Last Synced: 2023-03-11T09:12:20.563Z (about 2 years ago)
- Language: Ruby
- Homepage:
- Size: 156 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Just a sample Rails 3.2.6 app to give a shot to Steak, RSpec, and Factory Girl together. The app tests three
basic features: adding an album to your music collection, uploading a cover to an existing album, and searching albums by artist and/or title.```bash
Vicentes-MacBook-Pro:coveralia(master) vicente$ rake stats
+----------------------+-------+-------+---------+---------+-----+-------+
| Name | Lines | LOC | Classes | Methods | M/C | LOC/M |
+----------------------+-------+-------+---------+---------+-----+-------+
| Controllers | 56 | 47 | 3 | 10 | 3 | 2 |
| Helpers | 4 | 4 | 0 | 0 | 0 | 0 |
| Models | 39 | 28 | 4 | 0 | 0 | 0 |
| Libraries | 0 | 0 | 0 | 0 | 0 | 0 |
| Acceptance specs | 144 | 113 | 0 | 4 | 0 | 26 |
+----------------------+-------+-------+---------+---------+-----+-------+
| Total | 243 | 192 | 7 | 14 | 2 | 11 |
+----------------------+-------+-------+---------+---------+-----+-------+
Code LOC: 79 Test LOC: 113 Code to Test Ratio: 1:1.4
```