NAME
Test::DB::Mysql
ABSTRACT
Temporary Mysql Database for Testing
SYNOPSIS
package main;
use Test::DB::Mysql;
my $tdbi = Test::DB::Mysql->new;
DESCRIPTION
This package provides methods for generating and destroying Mysql databases for testing purposes. The database, username and password attributes can be set using the respective environment variables: TESTDB_DATABASE
, TESTDB_USERNAME
, TESTDB_PASSWORD
, TESTDB_HOSTNAME
, and TESTDB_HOSTPORT
.
INHERITS
This package inherits behaviors from:
INTEGRATES
This package integrates behaviors from:
LIBRARIES
This package uses type constraints from:
ATTRIBUTES
This package has the following attributes:
database
database(Str)
This attribute is read-only, accepts (Str)
values, and is optional.
dbh
dbh(Object)
This attribute is read-only, accepts (Object)
values, and is optional.
dsn
dsn(Str)
This attribute is read-only, accepts (Str)
values, and is optional.
hostname
hostname(Str)
This attribute is read-only, accepts (Str)
values, and is optional.
hostport
hostport(Str)
This attribute is read-only, accepts (Str)
values, and is optional.
password
password(Str)
This attribute is read-only, accepts (Str)
values, and is optional.
username
username(Str)
This attribute is read-only, accepts (Str)
values, and is optional.
METHODS
This package implements the following methods:
create
create() : Object
The create method creates a temporary database and returns the invocant.
destroy
destroy() : Object
The destroy method destroys (drops) the database and returns the invocant.
AUTHOR
Al Newkirk, awncorp@cpan.org
LICENSE
Copyright (C) 2011-2019, Al Newkirk, et al.
This is free software; you can redistribute it and/or modify it under the terms of the The Apache License, Version 2.0, as elucidated in the "license file".