From e050ed5353987df0f892ed05b8aabd988616a679 Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Thu, 12 Sep 2013 06:44:17 +0200 Subject: [PATCH] typos in behavior driven development --- _posts/09-03-01-Behavior-Driven-Development.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_posts/09-03-01-Behavior-Driven-Development.md b/_posts/09-03-01-Behavior-Driven-Development.md index 9fa148c..d0cde20 100644 --- a/_posts/09-03-01-Behavior-Driven-Development.md +++ b/_posts/09-03-01-Behavior-Driven-Development.md @@ -4,9 +4,9 @@ isChild: true ## Behavior Driven Development {#behavior_driven_development_title} -There are two different types of Behavior-Driven Development (BDD): SpecBDD and StoryBDD. SpecBDD focuses on technical behavior or code, while StoryBDD focuses on business or feature behaviors or interactions. PHP has frameworks for both types of BDD. +There are two different types of Behavior-Driven Development (BDD): SpecBDD and StoryBDD. SpecBDD focuses on technical behavior of code, while StoryBDD focuses on business or feature behaviors or interactions. PHP has frameworks for both types of BDD. -With StoryBDD, you write human-readable stories that describe the behavior of your application. These stories +With StoryBDD, you write human-readable stories that describe the behavior of your application. These stories can then be run as actual tests against your application. The framework used in PHP applications for StoryBDD is Behat, which is inspired by Ruby's [Cucumber](http://cukes.info/) project and implements the Gherkin DSL for describing feature behavior. @@ -15,7 +15,7 @@ With SpecBDD, you write specifications that describe how your actual code should a function or method, you are describing how that function or method should behave. PHP offers the PHPSpec framework for this purpose. This framework is inspired by the [RSpec project](http://rspec.info/) for Ruby. -### BDD Links +### BDD Links * [Behat](http://behat.org/), the StoryBDD framework for PHP, inspired by Ruby's [Cucumber](http://cukes.info/) project; * [PHPSpec](http://www.phpspec.net/), the SpecBDD framework for PHP, inspired by Ruby's [RSpec](http://rspec.info/) project;