Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/phawk/minitesting
https://github.com/phawk/minitesting
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/phawk/minitesting
- Owner: phawk
- Created: 2014-08-21T20:19:46.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-09-11T20:45:59.000Z (over 10 years ago)
- Last Synced: 2024-10-25T01:39:26.886Z (2 months ago)
- Language: Ruby
- Size: 125 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Simple Minitest::Spec setup
## Running tests:
Setup a minitest alias on your system to require 3 main test dirs and simplify the requires in ruby.
```sh
$ alias minitest="ruby -Ilib:test:spec"
```Now run each test file individually
```sh
$ minitest spec/wheel_spec.rb
```Or run them all (slower)
```sh
$ rake test
```