Выглядит так, будто remove_connection - это то, что вы ищете. Чтобы убедиться, что вы успешно удалили соединение, вы можете заключить метод find в блок восстановления как:
begin
ModelB.find(1)
rescue ConnectionNotEstablished
# if we're here, then we have no connection, which is good in this case
else
# if we're here, then we still have a connection, which is bad...
end