create_fixtures doesn't work since at least a94220b66c9e4890007f66b092b25f8a64a19d31:

- The namespacing should be `ActiveRecord::FixtureSet`
- I might be missing something but I'm not sure why `create_fixtures` is useful for nowaday (unless for testing rails internal /shrug) and since it's been that long it wasn't working I think it should be fine to just fire it
This commit is contained in:
Edouard CHIN 2017-12-11 17:13:46 -05:00
parent a80f81af05
commit e6ef1a7673

@ -29,10 +29,6 @@ class TestCase
end
ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path
def create_fixtures(*fixture_set_names, &block)
FixtureSet.create_fixtures(ActiveSupport::TestCase.fixture_path, fixture_set_names, {}, &block)
end
end
# :enddoc: