# JS-Test-Base **Repository Path**: mirrors_gitpan/JS-Test-Base ## Basic Information - **Project Name**: JS-Test-Base - **Description**: Read-only release history for JS-Test-Base - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-10-20 - **Last Updated**: 2025-12-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README NAME Test.Base - Data Driven Testing Base Class SYNOPSIS var t = new Test.Base(); var filters = { input: 'upper_case' }; t.plan(1); t.filters(filters); t.run_is('input', 'output'); function upper_case(string) { return string.toUpperCase(); } /* Test === Test Multiline Upper Case --- input foo bar baz --- output FOO BAR BAZ */ DESCRIPTION Test.Base is a Javascript port of Perl's Test::Base. For a feel of how Test.Base works, see Perl's Test::Base documenation (for now). To use Test.Base in a project, follow the instructions in sample/README. AUTHOR Ingy döt Net COPYRIGHT Copyright (c) 2006, 2008. Ingy döt Net. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See