The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

NAME

Test::Fixture::DBIC::Schema - fixture data loader for DBIx::Class::Schema

SYNOPSIS

# in your t/*.t
my $data = construct_fixture(
schema => $self->model,
fixture => 'fixture.yaml',
);
# in your fixture.yaml
- schema: Entry
name: entry1
data:
id: 1
title: my policy
body: shut the f*ck up and write some code
timestamp: 2008-01-01 11:22:44
- schema::Entry
name: entry2
data:
id: 2
title: please join
body: #coderepos-en@freenode.
timestamp: 2008-02-23 23:22:58

DESCRIPTION

Test::Fixture::DBIC::Schema is fixture data loader for DBIx::Class::Schema.

NAME

Test::Fixture::DBIC::Schema - load fixture data to storage.

METHODS

construct_fixture

my $data = construct_fixture(
schema => $self->model,
fixture => 'fixture.yaml',
);

construct your fixture.

CODE COVERAGE

---------------------------- ------ ------ ------ ------ ------ ------ ------
File stmt bran cond sub pod time total
---------------------------- ------ ------ ------ ------ ------ ------ ------
...st/Fixture/DBIC/Schema.pm 100.0 100.0 n/a 100.0 100.0 100.0 100.0
Total 100.0 100.0 n/a 100.0 100.0 100.0 100.0
---------------------------- ------ ------ ------ ------ ------ ------ ------

AUTHOR

Tokuhiro Matsuno <tokuhirom@gmail.com>

Kan Fushihara

SEE ALSO

DBIx::Class, Kwalify

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

AUTHOR

Steffen Schwigon <ss5@renormalist.net>

COPYRIGHT AND LICENSE

This software is copyright (c) 2024 by Steffen Schwigon.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.