Unfortunately, the heroku console doesn't provide any line no. information. The error means you have a line in user_test.rb that called a method with the wrong number of arguments.
The usual way of running a test is using a rake task. Instead of using the heroku console, use the rake tool and run "rake test:units". Fortunately, it's got some logs that should point you to the line causing the problem. You could also have a copy of your app in your local machine and run the test there (if you're having problems running your test in heroku). --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/heroku?hl=en -~----------~----~----~----~------~----~------~--~---
