Skip Menu |

This queue is for tickets about the DBIx-SQLEngine CPAN distribution.

Report information
The Basics
Id: 8326
Status: resolved
Priority: 0/
Queue: DBIx-SQLEngine

People
Owner: Nobody in particular
Requestors: cpan [...] pjedwards.co.uk
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.028
Fixed in: (no value)



Subject: In examplep.t, if OS is VMS then case insensitive match is required.
DBIx-SQKEngine 0.028 When running the test case example.t on the VMS OS, 2 test cases fail due to case sensitivity on filenames. The line: ok( grep { $_->{name} =~ /SQLEngine/ } @$rows ); occurs in 2 places in the file, the change I made to get the test cases to pass on VMS is below: # case insensitive match if on VMS OS if ($^O eq 'VMS') { ok( grep { $_->{name} =~ /SQLEngine/i } @$rows ); } else { ok( grep { $_->{name} =~ /SQLEngine/ } @$rows ); } Thank you. Peter (Stig) Edwards
Hello, Thanks for the bug report; this issue will be fixed in the next release. -- -Simon