| JiftyX-Fixtures documentation | view source | Contained in the JiftyX-Fixtures distribution. |
version 0.07
JiftyX::Fixtures->new->config(
fixtures => [
development => {
dir => "etc/fixtures/development"
}
]
)->run;
WARNING: This software is stil in alpha stage, any intense variation is possible.
Load pre-defined fixture from specified mode, and Insert it into you Jifty application database.
shelling <shelling@cpan.org>
This software is Copyright (c) 2009 by <shelling@cpan.org>.
This is free software, licensed under:
The MIT (X11) License
Constructor, invoke without args
Give one arg which is selected from "app_root", "framework", "fixtures" to get the configuration detail.
Append second arg to set the configuration.
$jf->config("fixtures"); #=> [ development => { dir => "etc/fixtures/development" },
test => { dir => "etc/fixtures/test" } ]
$jf->config(
fixtures => [
development => {
dir => "etc/dev_fixtures"
},
test => {
dir => "etc/test_fixtures"
}
]
);
Running subcommand, default is "load". Give one arg to specify which subcommand would be run.
| JiftyX-Fixtures documentation | view source | Contained in the JiftyX-Fixtures distribution. |