๐Ÿ“ฆ bbbco / minitest-sugar

Eat all the Sugar!

โ˜… 0 stars โ‘‚ 0 forks ๐Ÿ‘ 0 watching โš–๏ธ MIT License
๐Ÿ“ฅ Clone https://github.com/bbbco/minitest-sugar.git
HTTPS git clone https://github.com/bbbco/minitest-sugar.git
SSH git clone git@github.com:bbbco/minitest-sugar.git
CLI gh repo clone bbbco/minitest-sugar
Francesco Rodriguez Francesco Rodriguez bump version 020e576 12 years ago ๐Ÿ“ History
๐Ÿ“‚ master View all commits โ†’
๐Ÿ“ lib
๐Ÿ“ test
๐Ÿ“„ .gitignore
๐Ÿ“„ Gemfile
๐Ÿ“„ LICENSE
๐Ÿ“„ Rakefile
๐Ÿ“„ README.md
๐Ÿ“„ README.md

minitest-sugar ==============

Sugar for your MiniTest diet.

Installation


$ gem install minitest-sugar

Usage


Install this gem and create tests in a more human readable way:

require 'minitest/sugar'

class TruthTest < Minitest::Test
  extend Minitest::Sugar

  # instead of `def test_assert_the_truth` do:
  test 'assert the truth' do
    assert true
  end
end