Ao executar a test suit o seguinte o warning aparece varias vezes
DEPRECATION WARNING: The success? predicate is deprecated and will be removed in Rails 6.0.
Para remover basta alterar nos testes de controller:
expect(response).to be_success para expect(response).to be_successful
Ao executar a test suit o seguinte o warning aparece varias vezes
DEPRECATION WARNING: The success? predicate is deprecated and will be removed in Rails 6.0.
Para remover basta alterar nos testes de controller:expect(response).to be_success
paraexpect(response).to be_successful