0.01
No commit activity in last 3 years
No release in over 3 years
Opinionated test dependencies and conventions for Ruby applications.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0

Runtime

~> 2.5.2
~> 1.6.2
~> 4.6.2
~> 0.13.2
~> 0.9.1
~> 0.7.1
~> 0.17.0
 Project Readme

thincloud-test Code Climate

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

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a Pull Request

License