Comments on: (My) Cucumber best practices and tips http://eggsonbread.com/2010/09/06/my-cucumber-best-practices-and-tips/?utm_source=rss&utm_medium=rss&utm_campaign=my-cucumber-best-practices-and-tips Simple and delicious. Sun, 01 Mar 2015 12:30:00 +0000 hourly 1 By: John http://eggsonbread.com/2010/09/06/my-cucumber-best-practices-and-tips/comment-page-1/#comment-15024 Fri, 31 Aug 2012 05:37:53 +0000 http://eggsonbread.com/?p=323#comment-15024 Bikash,

I am new to this too, but I think the reason is that your step def file is not found. Make sure that your “step_definition” directory is under the features folder.

HTH.

]]>
By: Bikash http://eggsonbread.com/2010/09/06/my-cucumber-best-practices-and-tips/comment-page-1/#comment-15000 Tue, 28 Aug 2012 08:00:05 +0000 http://eggsonbread.com/?p=323#comment-15000 Hi,

I am new to cucumber.I am facing the problem while acessing the features .it is showing that StepsDefNotFoundException.how can i solve this problem.can any one please help me regarding this.

Bikash

]]>
By: The elements of (cucumber) style | WatirMelon http://eggsonbread.com/2010/09/06/my-cucumber-best-practices-and-tips/comment-page-1/#comment-5146 Mon, 04 Jul 2011 01:16:49 +0000 http://eggsonbread.com/?p=323#comment-5146 [...] the last few months. Some of my sources of inspiration include: You’re Cuking it Wrong, (My) Cucumber best practices and tips, and You’re Almost Cuking [...]

]]>
By: Useful BDD/Cucumber/Gherkin resources « Twilight Time http://eggsonbread.com/2010/09/06/my-cucumber-best-practices-and-tips/comment-page-1/#comment-2793 Sun, 13 Mar 2011 15:21:34 +0000 http://eggsonbread.com/?p=323#comment-2793 [...] BDD by Dan North Cucumber best practices and tips BDD, TDD, Acceptance Testing and Executable Specification Combining TDD/BDD [...]

]]>
By: (My) RSpec best practices and tips | EggsOnBread http://eggsonbread.com/2010/09/06/my-cucumber-best-practices-and-tips/comment-page-1/#comment-2748 Fri, 11 Mar 2011 05:13:50 +0000 http://eggsonbread.com/?p=323#comment-2748 [...] could also be interested in (My) Cucumber best practices and tips or rspec-set a little gem that helps you speeding up your model specs. . Bookmark the permalink. [...]

]]>
By: The elements of (cucumber) style | Testing with Vision http://eggsonbread.com/2010/09/06/my-cucumber-best-practices-and-tips/comment-page-1/#comment-2022 Tue, 04 Jan 2011 03:57:20 +0000 http://eggsonbread.com/?p=323#comment-2022 [...] the last few months. Some of my sources of inspiration include: You’re Cuking it Wrong,  (My) Cucumber best practices and tips, and You’re Almost Cuking [...]

]]>
By: Frank http://eggsonbread.com/2010/09/06/my-cucumber-best-practices-and-tips/comment-page-1/#comment-1597 Tue, 23 Nov 2010 18:43:32 +0000 http://eggsonbread.com/?p=323#comment-1597 Yes it definitely helps Philippe! Thanks for these precious tips

]]>
By: Jean-Michel http://eggsonbread.com/2010/09/06/my-cucumber-best-practices-and-tips/comment-page-1/#comment-1124 Thu, 09 Sep 2010 08:57:03 +0000 http://eggsonbread.com/?p=323#comment-1124 wordpress ate my code, this should look better:

step_definitions = Dir.glob('features/**/step_definitions/*.rb').map { |file| "-r #{file}" }.join(" ")

default: --format progress features --strict --tags ~@wip --no-source --tags ~@draft -r features/support/env.rb -r features/step_definitions

]]>
By: Jean-Michel http://eggsonbread.com/2010/09/06/my-cucumber-best-practices-and-tips/comment-page-1/#comment-1123 Thu, 09 Sep 2010 08:56:12 +0000 http://eggsonbread.com/?p=323#comment-1123 If there are more than 15 features, it’s hard to read (I am lost when I see a list with more than 7 items). We use sub directories which we intend to map with domains of our application ( hard work and long discussions to decide how to group!). Each sub directory has a step_definitions folder and our cucumber.yml has this little erb in order to load them:

default: –format progress features –strict –tags ~@wip –no-source –tags ~@draft -r features/support/env.rb -r features/step_definitions

]]>
By: Frank Lakatos http://eggsonbread.com/2010/09/06/my-cucumber-best-practices-and-tips/comment-page-1/#comment-1120 Wed, 08 Sep 2010 23:05:11 +0000 http://eggsonbread.com/?p=323#comment-1120 Thanks for this article. It was extremely helpful, as I had no idea step definition could be made up of other step definitions. I’ve got a lot of refactoring to do.

]]>