I have a method which queries the database and either returns an array with the results or false if there are no results.
All I need PHPSpec to do in this case is test whether it returns an array or false, but I can't work out how to do that.
Or do I need to mock the database query and separate it out of my method?