Top "Bdd" questions

BDD stands for Behavior Driven Development.

QUnit Vs. Jasmine and TDD Vs. BDD

I've been looking at two libraries for doing unit tests on the front-end. QUnit - http://qunitjs.com/ Jasmine - …

javascript tdd bdd jasmine qunit
Writing a spec for helper with Ruby on Rails and RSpec

I have been writing specs for controllers and models, but I have never written a helper spec. I have no …

ruby-on-rails ruby rspec bdd
Rails and Selenium: how to stop/pause execution of a test in the browser?

I'm having a hard (but very interesting time) diving into Behavior Driven Development using Cucumber, RSpec, Selenium, and Rails. I …

ruby-on-rails selenium bdd
Recommended reading to learn Gherkin

I wish to learn Gherkin so I can use it with specflow; I am looking for a document I can …

testing rspec bdd specflow gherkin
How to use RSpec without Rails?

What is the process for doing TDD in Ruby with RSpec without Rails? Do I need a Gemfile? Does it …

ruby rspec tdd bdd
Is there an rspec test for exact length of an attribute?

I'm trying to test the length of a zip code attribute to ensure its 5 characters long. Right now I'm testing …

rspec tdd bdd
In RSpec - how can I test if one attribute is less (or more) than another

In my app I want to have a Car model. It will have two fields among others: date_from and …

ruby-on-rails ruby rspec tdd bdd
Initializaton error in com.cucumber.listener.ExtentCucumberFormatter

I am running the script using Cucumber in BDD Framework and I am using Extent Reports plugin to create the …

selenium cucumber bdd extent
problem with rspec test, undefined method 'post'

I am writing a spec to test the behavior of the mashup_controller when someone sends a query through a …

ruby-on-rails ruby rspec tdd bdd
TDD and BDD Differences

I honestly don't see the difference between BDD and TDD. I mean, both are just tests if what is expected …

testing tdd bdd