- Fix require
action_cable/channel/test_case
errors with Rails 5.x. Fixes #124
- Fix require
action_cable/channel/test_case
errors with Rails 5.x. Fixes #124
- Wrap action_view init in config.to_prepare block. Fixes #122. Thanks @Hal-Sumi
- Use Minitest instead of MiniTest. Fixes #119. Thanks @evgeni
- Fix ActionCable::Channel::TestCase support. Fixes #118. Thanks @marcoroth
- Add support for ActionCable::Channel::TestCase. Fixes #117. Thanks @tijn
- Add support for ActionCable::Channel::TestCase. Fixed #117. Thanks @tijn
- Remove automated tests for Rails v5 and Ruby v2.
- Update all of our tests and examples to use non-global expectations.
- Remove
Rails.application.reloader.to_prepare
forActionViewBehavior
.
- Remove 'ENV['RAILS_ENV']=='test' from railtie.rb Fixes #114. Thanks @Qqwy
- Fix Rails v7 autoloading with ViewComponent. Thanks @woller
- Fixed parallel tests with relative paths. Thanks @jlsherrill
- Better ActionView load. Fixed #105. Thanks @zofrex
- Fixed parallel tests in Rails v6.
- Changed gemspec to
railties
vsrails
. Thanks @seuros
- Bumping to be major with latest testing versions.
- Add Rails v6 via gem spec support.
- Fix source_location of methods defined with
test
. Fixes #91. Thanks @barrettkingram
- Use ENV['RAILS_ENV'] for initializer guards vs memo'ed Rails.env. Fixes #72.
- Allow Rails 4.1 to new 5.x to be supported.
- Fix ActiveJob support for
described_class
. Thanks @pschambacher.
- Only add our Thread.current[:current_spec] hack if needed. Fixes #45.
- Added ActiveJob support. Fixes #59. Thanks @xpepermint.
- Fix an issue where
describe
method was removed. Fixes #55 & #50 41a0f851
No release notes yet. PRs welcome!
- Fixed ActiveSupport's Declarative#test forwarded implementation. Fixed #46.
- Fixed ActionView load order & url helpers. Fixes #42.
- Fixed initialization callbacks for latest Rails 4.1. Fixes #39.
- Change initialization so that ActiveSupport always comes first.
- Minitest 5.x and Rails 4.1 compatability. Fixes #36.
- Fix nested described test names along with Minitest::Spec.describe_stack. Fixed #21.
- Leverage
ActiveSupport::Testing::ConstantLookup
for ourdescribed_class
interface.
- Fix nested described test names. Fixes #21.
- Fixed gemspec using '>= 3.0', '< 4.1'. Fixed #35.
- Enforces case sensitivity on registered spec types. Fixes #26.
- Allow using ActiveSupport's Declarative#test as an alias to it. Thanks @ysbaddaden. Fixes #23.
- Register non ActiveRecord::Base classes correctly. Thanks @mptre.
- Only use a TU shim for Ruby 1.8. See README for info. Fixes #18.
- Use Minitest::Spec::DSL provided by Minitest 4.7.
- Less coupling to ActiveRecord ORM, works for MongoDB now. Thanks @kimsuelim
- Fix helper test bug where calling methods in first context block blew up. Fixes #13.
- Only require the freedom patches and autorun when Rails.env.test?
- Make sure #described_class works in ActiveSupport::TestCase class level.
- Add mini_should support and talk about matchers.
- Fix MiniTest::Unit::TestCase hack for Rails 4, ignore in Rails 3.
- Way better support for controller_class, mailer_class, and helper_class reflection.
- Eager load controller_class, mailer_class, and helper_class.
- All new MiniTest::Spec for Rails!!! Tested to the hilt!!!
- Track MiniTest's major/minior version number.
- Must use MiniTest version ~> 2.1. As 3.x will not work.
- Use #constantize vs. #safe_constantize for Rails 3.0 compatability.
- Use ActionController::IntegrationTest vs. ActionDispatch::IntegrationTest
- Use class app setter for integration tests.
- Stronger test case organization where we properly setup functional and integraiton tests while also allowing an alternate pure MiniTest::Spec outter file describe block. [Jack Chu]
- Remove version deps on minitest since v3 is out. Should work with any v2/3 version.
- Add rails to the gemspec.
- Initial Release, targeted to Rails 3.x.