fp/testo

Extract test as example and put them to doc

dev-master 2013-10-11 13:36 UTC

This package is auto-updated.

Last update: 2024-04-06 23:01:53 UTC


README

Do you remember those outdated examples in a documentation?.

Or times while updating documents you had to test examples manually?

This days in the past. Testo come into play.

Example

Let's say you have a README.md:

@testo examples/Testo/Examples/README.md {
Some description of the awesome code:

<?php
@testo Testo\Examples\Hello world {
echo 'hello world!';
@testo 1abb62086e2cc233ede1e19de3a8e5f6 }
?>
@testo 35a8d2d426c05614551484dcdd450f37 }

and there is a class:

// @testo Testo\Examples\Hello {
// @testo }

So after you run Testo there will be clean README.md:

@testo examples/Testo/Examples/README.md.expected {
Some description of the awesome code:

<?php
@testo Testo\Examples\Hello world {
echo 'hello world!';
@testo 1abb62086e2cc233ede1e19de3a8e5f6 }
?>
@testo 35a8d2d426c05614551484dcdd450f37 }

What's inside?

<?php
// @testo Testo\Examples\ReadmeTest whatsInside {
// @testo }