2017-25 © Pedro Peláez
 

library kahlan

The PHP Test Framework for Freedom, Truth and Justice.

image

kahlan/kahlan

The PHP Test Framework for Freedom, Truth and Justice.

  • Thursday, July 5, 2018
  • by jails
  • Repository
  • 38 Watchers
  • 880 Stars
  • 91,061 Installations
  • PHP
  • 154 Dependents
  • 0 Suggesters
  • 56 Forks
  • 1 Open issues
  • 93 Versions
  • 12 % Grown

The README.md

Kahlan, (*1)


Build Status License, (*2)

Latest Stable Version Total Downloads Code Coverage, (*3)

Kahlan is a full-featured Unit & BDD test framework a la RSpec/JSpec which uses a describe-it syntax and moves testing in PHP one step forward., (*4)

Kahlan lets you stub or monkey patch your code directly like in Ruby or JavaScript without any required PECL-extensions., (*5)

Videos

IRC

chat.freenode.net (server) #kahlan (channel), (*6)

Documentation

See the full documentation here, (*7)

Requirements

  • PHP 7.4+
  • Composer
  • phpdbg or Xdebug (only required for code coverage analysis)

Main Features

  • RSpec/JSpec syntax
  • Code Coverage metrics (xdebug or phpdbg required)
  • Handy stubbing system (mockery or prophecy are no longer needed)
  • Set stubs on your class methods directly (i.e allows dynamic mocking)
  • Ability to Monkey Patch your code (i.e. allows replacement of core functions/classes on the fly)
  • Check called methods on your classes/instances
  • Built-in Reporters (Terminal or HTML reporting through istanbul or lcov)
  • Built-in Exporters (Coveralls, Code Climate, Scrutinizer, Clover)
  • Extensible, customizable workflow

Syntax

<?php

describe("Example", function() {

    it("makes an expectation", function() {

         expect(true)->toBe(true);

    });

    it("expects methods to be called", function() {

        $user = new User();
        expect($user)->toReceive('save')->with(['validates' => false]);
        $user->save(['validates' => false]);

    });

    it("stubs a function", function() {

        allow('time')->toBeCalled()->andReturn(123);
        $user = new User();
        expect($user->save())->toBe(true)
        expect($user->created)->toBe(123);

    });

    it("stubs a class", function() {

        allow('PDO')->toReceive('prepare', 'fetchAll')->andReturn([['name' => 'bob']]);
        $user = new User();
        expect($user->all())->toBe([['name' => 'bob']]);

    });

});

Screenshots

Example of default reporting:

dot_reporter, (*8)

Example of verbose reporting:

verbose_reporter, (*9)

Example of code coverage on a specific scope:

code_coverage, (*10)

Installation

via Composer

$ composer require --dev kahlan/kahlan

Note: Kahlan uses the Semantic Versioning and maintains a CHANGELOG to help you easily understand what's happening., (*11)

via Git clone

git clone git://github.com/kahlan/kahlan.git
cd kahlan
composer install
bin/kahlan              # to run specs or,
bin/kahlan --coverage=4 # to run specs with coverage info for namespaces, classes & methods (require xdebug)

The Versions

05/07 2018

dev-dev

dev-dev

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.5

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

05/07 2018

dev-master

9999999-dev

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.5

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

05/07 2018

4.1.6

4.1.6.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.5

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

26/06 2018

4.1.5

4.1.5.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.5

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

15/06 2018

4.1.4

4.1.4.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.5

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

22/04 2018

4.1.3

4.1.3.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.5

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

17/04 2018

4.1.2

4.1.2.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.5

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

07/04 2018

4.1.1

4.1.1.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.5

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

31/03 2018

4.1.0

4.1.0.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.5

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

05/02 2018

4.0.6

4.0.6.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.5

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

14/10 2017

4.0.5

4.0.5.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.5

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

14/10 2017

4.0.4

4.0.4.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.5

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

14/10 2017

4.0.3

4.0.3.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.5

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

07/10 2017

4.0.2

4.0.2.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.5

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

06/10 2017

4.0.1

4.0.1.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.5

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

05/10 2017

4.0.0

4.0.0.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.5

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

13/08 2017

4.0.x-dev

4.0.9999999.9999999-dev

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.5

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

12/08 2017

3.1.18

3.1.18.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

07/08 2017

3.1.17

3.1.17.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

07/07 2017

dev-4.0-phony

dev-4.0-phony

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

22/06 2017

3.1.16

3.1.16.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

26/05 2017

3.1.15

3.1.15.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

12/04 2017

3.1.14

3.1.14.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

12/04 2017

3.1.13

3.1.13.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

07/04 2017

3.1.12

3.1.12.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

06/04 2017

3.1.11

3.1.11.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

23/03 2017

3.1.10

3.1.10.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

19/03 2017

3.1.9

3.1.9.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

15/02 2017

dev-temp

dev-temp

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

14/02 2017

3.1.8

3.1.8.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

12/02 2017

3.1.7

3.1.7.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

30/01 2017

3.1.6

3.1.6.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

09/01 2017

3.1.5

3.1.5.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

09/01 2017

3.1.4

3.1.4.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

06/01 2017

3.1.3

3.1.3.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

29/12 2016

3.1.2

3.1.2.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

29/12 2016

3.1.1

3.1.1.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

13/12 2016

3.1.0

3.1.0.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

02/12 2016

3.0.3

3.0.3.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

16/10 2016

3.0.2

3.0.2.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

07/10 2016

3.0.1

3.0.1.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

03/10 2016

3.0.0

3.0.0.0

The PHP Test Framework for Freedom, Truth and Justice.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

The Development Requires

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

29/09 2016

2.5.8

2.5.8.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

23/09 2016

2.5.7

2.5.7.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

18/08 2016

2.5.6

2.5.6.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

13/08 2016

2.5.5

2.5.5.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

15/06 2016

2.5.4

2.5.4.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

10/05 2016

2.5.3

2.5.3.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

02/05 2016

1.3.x-dev

1.3.9999999.9999999-dev

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

02/05 2016

1.3.2

1.3.2.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

01/05 2016

2.5.2

2.5.2.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

01/05 2016

2.5.1

2.5.1.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

28/04 2016

2.5.0

2.5.0.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

23/03 2016

2.4.1

2.4.1.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

20/03 2016

2.4.0

2.4.0.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

18/02 2016

2.3.2

2.3.2.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

13/02 2016

2.3.1

2.3.1.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

10/02 2016

2.3.0

2.3.0.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

10/02 2016

2.2.0

2.2.0.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

17/01 2016

2.1.0

2.1.0.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

09/12 2015

1.3.1

1.3.1.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

09/12 2015

2.0.1

2.0.1.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

06/12 2015

2.0.0

2.0.0.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

05/12 2015

1.3.0

1.3.0.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

  • php >=5.4

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

24/11 2015

1.2.11

1.2.11.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

23/11 2015

1.2.10

1.2.10.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

23/11 2015

1.2.9

1.2.9.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

22/11 2015

1.2.8

1.2.8.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

07/11 2015

1.2.7

1.2.7.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

07/11 2015

1.2.6

1.2.6.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

04/11 2015

1.2.5

1.2.5.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

03/11 2015

1.2.4

1.2.4.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

03/11 2015

1.2.3

1.2.3.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

22/10 2015

1.2.2

1.2.2.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

17/10 2015

1.2.1

1.2.1.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

13/10 2015

1.2.0

1.2.0.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

03/09 2015

1.1.9

1.1.9.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

30/07 2015

1.1.8

1.1.8.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

27/07 2015

1.1.7

1.1.7.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

27/07 2015

1.1.6

1.1.6.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

26/06 2015

1.1.5

1.1.5.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

04/06 2015

1.1.4

1.1.4.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

21/03 2015

1.1.3

1.1.3.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

20/03 2015

1.1.2

1.1.2.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

17/03 2015

1.1.1

1.1.1.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

25/02 2015

1.1.0

1.1.0.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

11/02 2015

1.0.6

1.0.6.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

10/02 2015

1.0.5

1.0.5.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

02/02 2015

1.0.4

1.0.4.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

02/02 2015

1.0.3

1.0.3.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

01/02 2015

1.0.2

1.0.2.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

28/01 2015

1.0.1

1.0.1.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development

24/01 2015

1.0.0

1.0.0.0

Behavior-Driven Development (BDD) library.

  Sources   Download

MIT

The Requires

 

by CrysaLEAD

bdd tdd mock stub testing unit test monkey patching behavior-driven development