Yes, I actually do. It's a behavioral driven testing framework. I love the idea of it but hate working with it because everyone uses it improperly.
What the steps in a scenario should look like:
Given a user has a bank accout
And the account has a balance of $10
When the user attempts to withdraw $20
Then the transaction should fail
How everyone I've worked with uses it:
Given the system is setup
Given the user TESTUSER1
Given load TESTDATA1
When the user sends a request
ACTION | AMOUNT
WITHDRAW | 20.0
The the response should be 400
STATUS | MESSAGE
Failure | Not enough funds