logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

KiokuDB::Test - Reusable tests for KiokuDB backend authors.

Author

       Yuval Kogman <nothingmuch@woobling.org>

Description

       This module loads and runs KiokuDB::Test::Fixtures against a KiokuDB directory instance.

Exports

       run_all_fixtures $dir
       run_all_fixtures sub { return $dir }
           Runs all the KiokuDB::Test::Fixture objects against your dir.

           If you need a new instance of KiokuDB for every fixture, pass in a code reference.

           This  will  load  all  the modules in the KiokuDB::Test::Fixture namespace, and run them against your
           directory.

           Fixtures generally check for backend roles and skip unless the backend supports that set of features.

Name

       KiokuDB::Test - Reusable tests for KiokuDB backend authors.

Synopsis

           use Test::More;

           use KiokuDB::Test;

           use KiokuDB::Backend::MySpecialBackend;

           my $b = KiokuDB::Backend::MySpecialBackend->new( ... );

           run_all_fixtures( KiokuDB->new( backend => $b ) );

           done_testing();

Version

       version 0.57

See Also