Description
Opinionated testing framework dependencies and configuration for Ruby applications.
New Leaders uses this gem to manage the following dependencies:
Requirements
This gem has been tested against the following Ruby versions:
- 1.9.3
- 2.0.0
Installation
Add this line to your application's Gemfile:
gem "thincloud-test"
And then execute:
$ bundle
Or install it yourself as:
$ gem install thincloud-test
Usage
The gem manages the test framework dependencies for you and provides a command to bootstrap a test environment.
The goal of thincloud-test
is to be minimal by default but provide additional capabilities by following simple conventions.
If you just want to get started using minitest
:
require "thincloud/test"
This requires minitest
and simplecov
with a default Simplecov configuration. You can require them independently if needed. Adding filters to Simplecov for example:
require "thincloud/test/simplecov"
Simplecov.configure do
add_filter "/spec/"
add_filter "/some_other_dir/"
end
require "thincloud/test/minitest"
To enable the default New Leaders conventions, run the following command:
$ thincloud-testify
This will bootstrap your project with a test/
directory, a minitest_helper.rb
with some default configuration, a test/support/
directory with configuration for mocha
, custom minitest formatters, a Guardfile
, a default Travis CI configuration, and more! 🎉 🎈
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a Pull Request
License
- Freely distributable and licensed under the MIT license.
- Copyright (c) 2012-2013 New Leaders (opensource@newleaders.com)
- https://newleaders.com