Calling a controller action from script/console or runner

Hi Mark, it seems that you're trying to invoke an instance using class method syntax. Thus, you'll need to do the following in script/console:

1) controller = MyController.new <RETURN>

2) controller.test <RETURN>

Good luck,

-Conrad