mirror of
https://github.com/thoughtbot/factory_bot.git
synced 2022-11-09 11:43:51 -05:00
Update MiniTest to Minitest in Getting Started
Drop mention of no longer existing module. [fixes #778] [fixes #830] [fixes #833]
This commit is contained in:
parent
a2a23a42bf
commit
66431d0905
1 changed files with 5 additions and 5 deletions
|
@ -48,18 +48,18 @@ class Spinach::FeatureSteps
|
|||
include FactoryGirl::Syntax::Methods
|
||||
end
|
||||
|
||||
# MiniTest
|
||||
class MiniTest::Unit::TestCase
|
||||
# Minitest
|
||||
class Minitest::Unit::TestCase
|
||||
include FactoryGirl::Syntax::Methods
|
||||
end
|
||||
|
||||
# MiniTest::Spec
|
||||
class MiniTest::Spec
|
||||
# Minitest::Spec
|
||||
class Minitest::Spec
|
||||
include FactoryGirl::Syntax::Methods
|
||||
end
|
||||
|
||||
# minitest-rails
|
||||
class MiniTest::Rails::ActiveSupport::TestCase
|
||||
class Minitest::Rails::ActiveSupport::TestCase
|
||||
include FactoryGirl::Syntax::Methods
|
||||
end
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue