perl-Test-More
SublimeText assistance for Perl's Test::More
Details
Installs
- Total 938
- Win 408
- Mac 242
- Linux 288
Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | Oct 6 | Oct 5 | Oct 4 | Oct 3 | Oct 2 | Oct 1 | Sep 30 | Sep 29 | Sep 28 | Sep 27 | Sep 26 | Sep 25 | Sep 24 | Sep 23 | Sep 22 | Sep 21 | Sep 20 | Sep 19 | Sep 18 | Sep 17 | Sep 16 | Sep 15 | Sep 14 | Sep 13 | Sep 12 | Sep 11 | Sep 10 | Sep 9 | Sep 8 | Sep 7 | Sep 6 | Sep 5 | Sep 4 | Sep 3 | Sep 2 | Sep 1 | Aug 31 | Aug 30 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
SublimeText-Perl-Test-More
This package provides snippets for Perl's Test::More for Sublime Text 2 and 3
Introduction and Usage
The package is currently offering the following snippets:
BAIL_OUT
can_ok
cmp_ok
diag
is
isa_ok
isnt
like
ok
unlike
is_deeply
done_testing
You simply write the Test::More routine you want and press the tab
key
An example:
ok<tab>
expands to:
ok($got eq $expected, 'test_name');
- tabbing once again lets you write the assertion
- tabbing yet again lets you label the test
- And then you can run your test suite
This package can with compliments the package for Perl's Test::Class for Sublime Text 2 and 3.
Installation
For installation several options are available.
Via Package Control:
Control
+Shift
+P
on Linux/Windows,Command
+Shift
+P
on OS X,- or for any OS
- Select
Tools->Command Palette
from the menu - Select
Package Control: Install Package
- Select perl-Test-More from the list of available packages
- Select
Git:
Clone the repository in your Sublime Text Packages directory.
$ git clone https://github.com/jonasbn/perl-Sublime-Test-More
The advantage of using either Package Control or git is, that the plugin will be automatically be updated.
See also the Package Control page for this plugin.
From ZIP
Sublime Text 3
- Download the zip file
- Unpack it in your Sublime Text directory, as per OS and Sublime Text
- OS X ~/Library/Application Support/Sublime Text 3/Packages/
- Linux ~/.config/sublime-text-3/Packages/
- Windows %APPDATA%\Sublime Text 3\Packages\
- Start using it! (see section above)
Sublime Text 2
- Download the zip file
- Unpack it in your Sublime Text directory, as per OS and Sublime Text
- OS X ~/Library/Application Support/Sublime Text 2/Packages/
- Linux ~/.config/sublime-text-2/Packages/
- Windows %APPDATA%\Sublime Text 2\Packages\
- Start using it! (see section above)
Issues
Please report any issues via github.
Motivation
I write a lot of test code across projects/distributions and since Test::More is put to such wide use it is nice to be able to write tests fast and consistenly.
Acknowledgements
- Daniel Salgado Población contributed
is_deeply
anddone_testing
, resulting in version 1.1.0
History
2015-11-27 1.1.0
is_deeply
anddone_testing
added
2015-08-15 1.0.0
- Initial version
License
The package is licensed under the Artistic License 2.0 and pull-requests are most welcome, please see the contribution guidelines.
jonasbn, Copenhagen/Denmark