I'm trying to use Behat to feature test a Reset Password form.
As the hash is random each time the Forgot Password feature is run, I thought adding a custom step to my Behat context would be the best way to go.
However, as the BehatContext is outside my Fuel installation, I'd like to know if there's any way to access the FuelPHP ORM methods - so I can search the user table by using Model_User::find)by_email() for example. I guess I'd have to include/require/use some files in my BehatContext file.
Alternatively I guess I could drop out to shell and run an oil command?