0.0
No commit activity in last 3 years
No release in over 3 years
Minitest::Metz is a Minitest plugin that under it's hood hides the SandiMeter. It allows you to easily apply Sandi Metz's four rules for developers on your tests.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.10
~> 10.0

Runtime

 Project Readme

Minitest::Metz

Minitest::Metz is a Minitest plugin that under it's hood hides the SandiMeter. It allows you to easily apply Sandi Metz's four rules for developers on your tests.

Why?

Because tests are code. Especially in Minitest, where each test file is a subclass of Minitest::Test.

Installation

Add this line to your application's Gemfile:

gem 'minitest-metz'

And then execute:

$ bundle

Or install it yourself as:

$ gem install minitest-metz

Usage

There two ways that you can use this plugin:

--metz

You can apply the --metz flag when you are running your tests. If present, the plugin will run the sandi_meter for the test that ran.

assert_obey_metz

If you are willing of writing tests around the four rules, you can assert on them. The assertions works on basically any type of class, whether it is a test class or a production class. If you want to test the test class for the four rules:

class PersonTest < Minitest::Test
  def test_sandi_four_rules
    assert_obey_metz(self.class)
    # Or..
    assert_obey_metz(PersonTest)
  end
end

If you want to test another class:

class PersonTest < Minitest::Test
  def test_sandi_four_rules
    assert_obey_metz(Person)
  end
end

Also, there's the option on asserting on a file path:

class PersonTest < Minitest::Test
  def test_sandi_four_rules
    assert_obey_metz("lib/person/person.rb")
  end
end

And, of course, you can use refute_obey_metz, although I have no idea why would you. But anyway, it's available for use. Have fun.

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake test to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/fteem/minitest-metz.