I'm fairly new to the BDD/Cucumber/Ruby field and I'm trying to help my team with writing new API tests in Cucumber/Ruby and one of the tests we need is a to check wether users can log in via Facebook.
So the behaviour looks like the following:
Scenario: As a user, when I connect with a verified facebook account for the first time, then I can sign up a new account
Given I am a new user
When `I connect with a verified facebook account`
Then I can create a new account
I have step definitions for all steps apart from the one in backticks above.
Could you help?