adamquaile/behat-table-parser

There is no license information available for the latest version (dev-master) of this package.

dev-master 2015-02-22 18:39 UTC

This package is auto-updated.

Last update: 2024-04-25 06:19:51 UTC


README

More fluent API for behat TableNodes.

Experimental. Need to implement sensible way of better integrating into context classes.

Usage

Tables used for single entities or key-value pairs:

Given there is a table like this:
| Key1 | Value1 |
| Key2 | Value2 |

And a context method like this:

public function thereIsATableLikeThis(TableNode $table)
{
    $table = (new SingleEntryTable($table))
        ->requires('Key1')
    ;
    $table->get('Key1');
}

(To be implemented next) Tables used for multiple entities:

Given there is a table like this:
| Key1          | Key 2         | Key 3         |
| 1st Value 1   | 1st Value 2   | 1st Value 3   |
| 2nd Value 1   | 2nd Value 2   | 2nd Value 3   |
| 3rd Value 1   | 3rd Value 2   | 3rd Value 3   |

And a context method like this:

public function thereIsATableLikeThis(TableNode $table)
{
    $table = (new MultipleEntityTable($table))
        ->requires('Key1')
        ->requires('Key2')
    ;
    $table->each(function() { ... });
    $table->row(0)->get('Key1')
}