The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Test::Ika - Yet another BDD testing library(Development Release)

SYNOPSIS

use Test::Ika;
use Test::Expects;

describe 'MessageFilter' => sub {
    my $filter;

    before_each {
        $filter = MessageFilter->new();
    };

    it 'should detect message with NG word' => sub {
        my $filter = MessageFilter->new('foo');
        expect($filter->detect('hello foo'))->ok;
    };
    it 'should detect message with NG word' => sub {
        my $filter = MessageFilter->new('foo');
        expect($filter->detect('hello foo'))->ok;
    };
};

runtests;

DESCRIPTION

Test::Ika is yet another BDD framework for Perl5.

This module provides pretty output for testing.

THIS IS A DEVELOPMENT RELEASE. API MAY CHANGE WITHOUT NOTICE.

FAQ

Reporters

Test::Ika provides some reporters.

FUNCTIONS

CLASS METHODS

AUTHOR

Tokuhiro Matsuno

SEE ALSO

Test::Spec

Test::Behavior::Spec

Test::More::Behaviours

LICENSE

Copyright (C) Tokuhiro Matsuno

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.