Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re^5: Module not included but present in %INC!

by toolic (Bishop)
on Jan 06, 2012 at 17:41 UTC ( [id://946634]=note: print w/replies, xml ) Need Help??


in reply to Re^4: Module not included but present in %INC!
in thread Module not included but present in %INC!

I modified test.pl and your .pm file. This works for me:
$ find . . ./test.pl ./Dante ./Dante/Correlation ./Dante/Correlation/CorrelationEngine.pm $ $ $ cat Dante/Correlation/CorrelationEngine.pm # # Dante::Correlation::CorrelationEngine.pm - Implements top-level co +rrelation logic. # ########## package Dante::Correlation::CorrelationEngine; use strict; use warnings; use Date::Parse; # There are a bunch of other .pm includes here, but they are modules f +or the project, not any other perl module # There are other functions here, not listed, of course sub testFunction { print str2time("2011-03-18 02:39:04") . "\n"; print str2time("1970-01-01 00:00:10") . "\n"; print str2time("2012-01-05 14:23:09") . "\n"; } # Must return 1 for the class to be compilable. 1; # End of Dante::Correlation::CorrelationEngine.pm $ $ cat ./test.pl #!/usr/bin/env perl use warnings; use strict; use Dante::Correlation::CorrelationEngine; Dante::Correlation::CorrelationEngine::testFunction(); $ $ $ ./test.pl 1300430344 18010 1325791389 $

Replies are listed 'Best First'.
Re^6: Module not included but present in %INC!
by truptivk (Novice) on Jan 09, 2012 at 11:02 UTC
    Hello all!

    Yes indeed, the problem was where the package declaration went, and I'd put it after loading strict, warning, all other modules and of course, the Date::Parse module.
    I changed it and whew! Now it works :) Thank you everybody; I completely overlooked the package declaration line; oopsie!
    Thank you for your time and effort everybody, it is much appreciated :)

    Trupti

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://946634]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (3)
As of 2024-04-20 01:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found