zacharyrankin/just-test

minimalistic tap-producing testing framework

Installs: 66

Dependents: 2

Suggesters: 0

Security: 0

Stars: 2

Watchers: 1

Forks: 0

pkg:composer/zacharyrankin/just-test

v0.3 2015-08-05 23:04 UTC

This package is not auto-updated.

Last update: 2025-10-07 07:55:29 UTC


README

minimalistic tap-producing testing framework, inspired by substack/tape.

Usage

use just_test\Test;

Test::create(
    "how do you call your test",
    function (Test $test) {
        $test->pass("woot");
    }
);

TODO

  • More documentation
  • I still do not like Test::create(), there must be a cleaner syntax
  • Better tests :O