Re: Module to test SQL data

2013-12-12 Thread Francesc Guasch
On Tue, Dec 10, 2013 at 06:38:23PM -0500, James E Keenan wrote: > On 12/9/13 5:03 AM, Francesc Guasch wrote: > >On Fri, Dec 06, 2013 at 07:01:32PM -0500, James E Keenan wrote: > > > > >It's not a big deal, I add a Makefile.PL. I must admit I struggled > >with Dist::Zilla myself when I had to insta

Re: Module to test SQL data

2013-12-10 Thread James E Keenan
On 12/9/13 5:03 AM, Francesc Guasch wrote: On Fri, Dec 06, 2013 at 07:01:32PM -0500, James E Keenan wrote: It's not a big deal, I add a Makefile.PL. I must admit I struggled with Dist::Zilla myself when I had to install my own module in other servers. Today I found a few minutes to checkout

Re: Module to test SQL data

2013-12-09 Thread Francesc Guasch
On Fri, Dec 06, 2013 at 05:17:50PM -0800, Karen Etheridge wrote: > > Why does one need a Makefile.PL to evaluate the distribution? One should be > able to run it just fine with 'prove -lr t', 'perl -Ilib t/foo.t' etc. Hi Karen, thanks for your input. I spotted minor failures in the tests with tha

Re: Module to test SQL data

2013-12-09 Thread Francesc Guasch
On Fri, Dec 06, 2013 at 07:01:32PM -0500, James E Keenan wrote: > On 12/4/13 3:12 AM, Francesc Guasch wrote: > > > > https://github.com/frankiejol/Test-SQL-Data > > Okay. Now, although I will probably catch hell from the Toolchain > Gang for saying this, the fact that your distribution is str

Re: Module to test SQL data

2013-12-06 Thread Karen Etheridge
Why does one need a Makefile.PL to evaluate the distribution? One should be able to run it just fine with 'prove -lr t', 'perl -Ilib t/foo.t' etc. However, that README doesn't sound right -- that sounds tailored towards developers (which really belongs in something like CONTRIBUTING), whereas a R

Re: Module to test SQL data

2013-12-06 Thread James E Keenan
On 12/4/13 3:12 AM, Francesc Guasch wrote: On Tue, Dec 03, 2013 at 07:09:16PM -0500, James E Keenan wrote: 2. Is the source code publicly available somewhere, e.g., github.com? I don't know what I was waiting for. Here it is now: https://github.com/frankiejol/Test-SQL-Data Okay. N

Re: Module to test SQL data

2013-12-06 Thread James E Keenan
On 12/4/13 3:12 AM, Francesc Guasch wrote: On Tue, Dec 03, 2013 at 07:09:16PM -0500, James E Keenan wrote: 1. Is this module built on the Test::Builder framework in the way that Test::Simple, Test::More, Test::Most, etc., are? It is not built on Test::Builder. It requires Test::More. It perf

Re: Module to test SQL data

2013-12-04 Thread Francesc Guasch
On Tue, Dec 03, 2013 at 07:09:16PM -0500, James E Keenan wrote: > On 11/27/13 7:31 AM, Francesc Guasch wrote: > >Hi. I wrote a module to help writing tests for modules that > >perform operations in SQL databases. I was considering the > >name > > > > Test::SQL::Data > > > >In short, it helps ru

Re: Module to test SQL data

2013-12-03 Thread James E Keenan
On 11/27/13 7:31 AM, Francesc Guasch wrote: Hi. I wrote a module to help writing tests for modules that perform operations in SQL databases. I was considering the name Test::SQL::Data In short, it helps running SQL tests: database preparing and result matching. When the module loads it pr