Woo hoo! Got it to work. For anyone interested, I believe it had to do
with the custom table in my Model declaration (var $useTable).

To solve my issue, I added two lines to my Test Model declaration:

class UserTest extends User {

    var $name = 'UserTest';
    var $useDbConfig = 'test_suite';
    var $cacheSources = false;

    var $useTable = null;
    var $tablePrefix = null;
}

The last two lines - setting useTable and tablePrefix to null - solved
my issue, and now my test structure/data is importing perfectly! Me
= :)


On Jan 8, 3:55 pm, Gwoo <[EMAIL PROTECTED]> wrote:
> Robby,
> Come to IRC, its much more fun than having to send 4 messages in 2hrs
> with no response.
> #cakephp, irc.freenode.net

Thanks, Gwoo - I'll do that.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" 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/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to