Full disclosure: I've only looked superficially. ...
# testing
a
Full disclosure: I've only looked superficially.
Copy code
"^I pay for the item$": function(){
    $world.result = request.registerService.makeTransaction(
        $world.price,
        $world.money
    );
},
VS:
Copy code
it("pays for the item" => () {
    $world.result = request.registerService.makeTransaction(
        $world.price,
        $world.money
    )
}
Why bother? Are there ppl raising tickets saying "I don't like jasmine-style BDD testing, I can only possibly work with a cucumber DSL"? If not... it's not a good use of your time. BTW, @abram what's with the PHP variable name?