sub like

Documentation for sub like assembled from the following types:

module Test

From Test

(Test) sub like

Defined as:

sub like(Str() $got, Regex:D $expected,$desc = "text matches $expected.raku()")

Use it this way:

    like 'foo', /fo/, 'foo looks like fo';

Marks a test as passed if the $value, when coerced to a string, matches the $expected-regex. The function accepts an optional description of the test with a default value printing the expected match.