perl_prove - plugin detail
to use the prove programm for test your perl file
Plugin owner: |
magicshark |
Website: |
https://bitbucket.org/magicshark/perl-prove |
Added: |
2015-06-16 |
License: |
GNU GENERAL PUBLIC LICENSE |
Category: |
Programming Languages |
Downloaded: |
1,351 times |
Rating: |
|
Plugin Log |
Show log
2015-06-19 04:30:58 | magicshark | Plugin edited, id:58731, pubid:58731 | 2015-06-19 04:30:58 | magicshark | Plugin edit initiated | 2015-06-18 11:06:45 | magicshark | Plugin edited, id:58731, pubid:58731 | 2015-06-18 11:06:45 | magicshark | New full image added | 2015-06-18 11:06:45 | magicshark | New thumbnail image added | 2015-06-18 11:06:45 | magicshark | Plugin edit initiated | 2015-06-18 10:45:43 | magicshark | Plugin edited, id:58731, pubid:58731 | 2015-06-18 10:45:43 | magicshark | Plugin edit initiated | 2015-06-17 06:10:14 | jkovalsky | Plugin published | 2015-06-16 11:22:33 | magicshark | Plugin saved with .nbm/zip file; id: 58731 |
|
|
Versions available
|
Download size: 0.03 MB
|
Last Update: 2015-06-16
|
What's new in this version
Verifications for NetBeans versions
Plugin is not subject to any verification
Introduction
to use the prove programm for test your perl file.
you should use it on perl script look's like that
#!/usr/bin/perl
#
use strict;
use warnings;
use Test::More tests => 4;
use TAP::Harness;
ok( 1, 'le nombre un devrait être vrai' );
ok( 0, '... et le zéro ne le devrait pas' );
ok( '', 'la chaîne vide devrait être fausse' );
ok( '!', '... et une chaîne non vide ne le devrait pas' );
done_testing();
__END__
|
[ You have to be logged in to be able to comment. ]
User Comments
There are no comments yet.
|