Hi All,
I was evaluating a way to implement BDD in postman.
I have gone through article http://blog.getpostman.com/2015/09/29/writing-a-behaviour-driven-api-testing-environment-within-postman/.
But i want to abstract feature file from actual assertions. I am aware cucumber gives a way to have a separate feature file. Can it be done in Postman?
Structure i am looking for:
-
Feature file -> Has all my business scenarios in separate file.
-
Step Definition --> Collection/request which just glue feature file with assertions.
-
Assertions -> Assertions collection/request that does verification and passes the result back to feature file.
Thanks.