Skip to content

Track associated files of Ruby tests.

License

Notifications You must be signed in to change notification settings

unused/test-map

Repository files navigation

Test-Map

Track associated files of executed tests to optimize test execution on file changes.

Usage

Add test-map to your Gemfile.

$ bundle add test-map

Minitest

Include minitest plugin.

# filename: test/test_helper.rb

require 'test_map'
require 'test_map/minitest/plugin'

# For Rails projects...
class ActiveSupport::TestCase
  include TestMap::Minitest::Plugin

  # ...
end

# Or custom projects using Minitest...
class Minitest::Test
  include TestMap::Minitest::Plugin
end

Rspec

...

Development

$ bundle install # install dependencies
$ bundle exec rake # run testsuite

Contributing

Bug reports and pull requests are welcome on GitHub.

About

Track associated files of Ruby tests.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages