From: Jason Stephenson Date: Sun, 7 Jul 2019 11:05:31 +0000 (-0400) Subject: Reorder the tests in 09-OpenILS-Application-Storage-Driver.t X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=db1d127bc9f056485902e35fa3d9be2a98ca2410;p=working%2FEvergreen.git Reorder the tests in 09-OpenILS-Application-Storage-Driver.t --- diff --git a/Open-ILS/src/perlmods/t/09-OpenILS-Application-Storage-Driver.t b/Open-ILS/src/perlmods/t/09-OpenILS-Application-Storage-Driver.t old mode 100644 new mode 100755 index 49fd8210fb..4ccba01bf9 --- a/Open-ILS/src/perlmods/t/09-OpenILS-Application-Storage-Driver.t +++ b/Open-ILS/src/perlmods/t/09-OpenILS-Application-Storage-Driver.t @@ -2,12 +2,9 @@ use Test::More tests => 6; +use_ok( 'OpenILS::Application::Storage::Driver::Pg' ); use_ok( 'OpenILS::Application::Storage::Driver::Pg::cdbi' ); use_ok( 'OpenILS::Application::Storage::Driver::Pg::fts' ); -use_ok( 'OpenILS::Application::Storage::Driver::Pg::QueryParser' ); - -# These modules are not meant to be loaded as a normal Perl module -# Lp 1835620 enables these tests because it fixes the code. -use_ok( 'OpenILS::Application::Storage::Driver::Pg' ); -use_ok( 'OpenILS::Application::Storage::Driver::Pg::dbi' ); use_ok( 'OpenILS::Application::Storage::Driver::Pg::storage' ); +use_ok( 'OpenILS::Application::Storage::Driver::Pg::dbi' ); +use_ok( 'OpenILS::Application::Storage::Driver::Pg::QueryParser' );