]>
luflow.net public git repositories - flow-web.git/blob - static/highlight/languages/tap.js
1 /*! `tap` grammar compiled for Highlight.js 11.11.1 */
3 var hljsGrammar
= (function () {
7 Language: Test Anything Protocol
8 Description: TAP, the Test Anything Protocol, is a simple text-based interface between testing modules in a test harness.
10 Author: Sergey Bronnikov <sergeyb@bronevichok.ru>
11 Website: https://testanything.org
16 name: 'Test Anything Protocol',
17 case_insensitive: true,
19 hljs
.HASH_COMMENT_MODE
,
20 // version of format and total amount of testcases
24 { begin: '^TAP version (\\d+)$' },
25 { begin: '^1\\.\\.(\\d+)$' }
40 // testcase status and description
56 hljs
.registerLanguage('tap', hljsGrammar
);