Adam Cameron
"^I pay for the item$": function(){
$world.result = request.registerService.makeTransaction(
$world.price,
$world.money
);
},
VS:
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?