Hello,
My end - goal is to write a website in RoR which has 2 parts.
A front end and a backend.
So I decided to write the backend on the BDD way.
In Ror you have a few gems which provides a full backend.
I'm thinking to use the activeadmin gem which provides authecation by using the devise gem.
My first scenario will be a user which logs into the backend.
Feature: a user login
As a user wants to log into the backend he/she must be authencate
Scenario : when I wants to login
Then I have to be authenciate
I want to see the backend
Now I wonder if this is a good attempt because I have no clue how I can check if I see the background in the acceptance and Rspec part.
Roelof