API de comptabilité horaire.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

test.pl 404B

123456789101112131415161718192021
  1. #!/usr/bin/perl
  2. # @file journal.pl
  3. # @author nas
  4. # @date 31/01/2022
  5. # @brief Remote call to the API in order to test
  6. BEGIN { push @INC,'.'; };
  7. use Config::Std;
  8. use LWP::UserAgent ();
  9. use lib qw(..);
  10. use JSON qw( );
  11. use Data::Dumper;
  12. use NRT::User;
  13. use NRT::Batch;
  14. print User::v ;
  15. read_config 'test.cfg' => our %config;
  16. our $batch = Batch->new( %config );
  17. print "\nMaking all tests\n";
  18. $batch->run();