[jbehave-scm] jbehave-core branch, master, updated. jbehave-3.3.1-5-g42094ea

2011-04-12 Thread git version control
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project jbehave-core.

The branch, master has been updated
   via  42094ea1714dd7bde153b60e4bdb5a3dd4063a51 (commit)
  from  c27f3479b78f40957ab079138006308219140621 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 42094ea1714dd7bde153b60e4bdb5a3dd4063a51
Author: Mauro Talevi mauro.tal...@aquilonia.org
Date:   Tue Apr 12 10:07:19 2011 +0100

JBEHAVE-474:  Updated pending.story to verify that the problem cannot be 
reproduced.

---

Summary of changes:
 .../jbehave/examples/trader/stories/pending.story  |7 +++
 1 files changed, 7 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
jbehave-core

hr/
p
To unsubscribe from this list please visit:
/p
p
a 
href=http://xircles.codehaus.org/manage_email;http://xircles.codehaus.org/manage_email/a



[jbehave-dev] [jira] Commented: (JBEHAVE-474) Pending step method generation fails with And steps

2011-04-12 Thread Mauro Talevi (JIRA)

[ 
http://jira.codehaus.org/browse/JBEHAVE-474?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=263257#action_263257
 ] 

Mauro Talevi commented on JBEHAVE-474:
--

Hi Jon, 

I've added your scenario to the trader pending.story and the problem cannot be 
reproduced, i.e. And steps are well-handled.

From the stacktrace the problem is most probably with your configuration, 
possibly of the keywords.  It seems the for some reason the And keyword or 
step type is not found. 

Can you please provide a little self-contained project that reproduces the 
problem?   Something as simple as the pom.xml and the Stories class and the 
.story file that you are using. 


 Pending step method generation fails with And steps
 ---

 Key: JBEHAVE-474
 URL: http://jira.codehaus.org/browse/JBEHAVE-474
 Project: JBehave
  Issue Type: Bug
  Components: Core
Affects Versions: 3.3.1, 3.4
 Environment: JDK 1.6.0_24 on Mac OS Snow Leopard
Reporter: Jonathan Woods
Priority: Minor

 When I run over a scenario with 'and' steps, pending method generation fails. 
  The same scenario without the 'and' steps generates methods without any 
 problem (and is jolly useful).
 The failure happens in 3.3.1 and in 3.4-SNAPSHOT, commit c27f34.
 The failure results from an NPE; JBehave knows the story has failed, but the 
 run times out and then exits with 'pass' from the JUnit POV.  Is that the 
 expected behaviour, btw?
 Failing scenario:
 Scenario: When I log in with good credentials after having been redirected to 
 the login page from my intended page, I am redirected to my intended page
 Given I am not logged in
 And I have been redirected from my intended page to the login page
 When I log in with good credentials
 Then I am redirected to my intended page
 And I am logged in
 Console output:
 Scenario: When I log in with good credentials after having been redirected to 
 the login page from my intended page, I am redirected to my intended page
 Given I am not logged in (PENDING)
 And I have been redirected from my intended page to the login page (PENDING)
 When I log in with good credentials (PENDING)
 Then I am redirected to my intended page (PENDING)
 And I am logged in (PENDING)
 Failed to run story 
 package.name.here/login/i_can_log_in_with_correct_credentials.story
 java.lang.NullPointerException
   at 
 org.jbehave.core.steps.PendingStepMethodGenerator.stepStartsWithWord(PendingStepMethodGenerator.java:86)
   at 
 org.jbehave.core.steps.PendingStepMethodGenerator.findStepType(PendingStepMethodGenerator.java:64)
   at 
 org.jbehave.core.steps.PendingStepMethodGenerator.generateMethod(PendingStepMethodGenerator.java:32)
   at 
 org.jbehave.core.embedder.StoryRunner.generatePendingStepMethods(StoryRunner.java:287)
   at 
 org.jbehave.core.embedder.StoryRunner.runScenarioSteps(StoryRunner.java:272)
   at org.jbehave.core.embedder.StoryRunner.run(StoryRunner.java:170)
   at org.jbehave.core.embedder.StoryRunner.run(StoryRunner.java:95)
   at 
 org.jbehave.core.embedder.Embedder$EnqueuedStory.call(Embedder.java:686)
   at 
 org.jbehave.core.embedder.Embedder$EnqueuedStory.call(Embedder.java:1)
   at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
   at java.util.concurrent.FutureTask.run(FutureTask.java:138)
   at 
 java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
   at 
 java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
   at java.lang.Thread.run(Thread.java:680)
 Story package.name.here/login/i_can_log_in_with_correct_credentials.story has 
 timed out after 61 seconds
 Generating reports view to 
 '/Users/jonathanwoods/Documents/workspaces/main/mobile/target/jbehave' using 
 formats '[stats, console, txt, html, xml]' and view properties 
 '{decorateNonHtml=true}'
 Reports view generated with 5 stories (of which 2 pending)  containing 3 
 scenarios (of which  0 failed and 3 pending)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



-
To unsubscribe from this list, please visit:

http://xircles.codehaus.org/manage_email




[jbehave-dev] [jira] Updated: (JBEHAVE-474) Pending step method generation fails with And steps

2011-04-12 Thread Mauro Talevi (JIRA)

 [ 
http://jira.codehaus.org/browse/JBEHAVE-474?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Mauro Talevi updated JBEHAVE-474:
-

Comment: was deleted

(was: Hi Jon, 

I've added your scenario to the trader pending.story and the problem cannot be 
reproduced, i.e. And steps are well-handled.

From the stacktrace the problem is most probably with your configuration, 
possibly of the keywords.  It seems the for some reason the And keyword or 
step type is not found. 

Can you please provide a little self-contained project that reproduces the 
problem?   Something as simple as the pom.xml and the Stories class and the 
.story file that you are using. 
)

 Pending step method generation fails with And steps
 ---

 Key: JBEHAVE-474
 URL: http://jira.codehaus.org/browse/JBEHAVE-474
 Project: JBehave
  Issue Type: Bug
  Components: Core
Affects Versions: 3.3.1, 3.4
 Environment: JDK 1.6.0_24 on Mac OS Snow Leopard
Reporter: Jonathan Woods
Priority: Minor

 When I run over a scenario with 'and' steps, pending method generation fails. 
  The same scenario without the 'and' steps generates methods without any 
 problem (and is jolly useful).
 The failure happens in 3.3.1 and in 3.4-SNAPSHOT, commit c27f34.
 The failure results from an NPE; JBehave knows the story has failed, but the 
 run times out and then exits with 'pass' from the JUnit POV.  Is that the 
 expected behaviour, btw?
 Failing scenario:
 Scenario: When I log in with good credentials after having been redirected to 
 the login page from my intended page, I am redirected to my intended page
 Given I am not logged in
 And I have been redirected from my intended page to the login page
 When I log in with good credentials
 Then I am redirected to my intended page
 And I am logged in
 Console output:
 Scenario: When I log in with good credentials after having been redirected to 
 the login page from my intended page, I am redirected to my intended page
 Given I am not logged in (PENDING)
 And I have been redirected from my intended page to the login page (PENDING)
 When I log in with good credentials (PENDING)
 Then I am redirected to my intended page (PENDING)
 And I am logged in (PENDING)
 Failed to run story 
 package.name.here/login/i_can_log_in_with_correct_credentials.story
 java.lang.NullPointerException
   at 
 org.jbehave.core.steps.PendingStepMethodGenerator.stepStartsWithWord(PendingStepMethodGenerator.java:86)
   at 
 org.jbehave.core.steps.PendingStepMethodGenerator.findStepType(PendingStepMethodGenerator.java:64)
   at 
 org.jbehave.core.steps.PendingStepMethodGenerator.generateMethod(PendingStepMethodGenerator.java:32)
   at 
 org.jbehave.core.embedder.StoryRunner.generatePendingStepMethods(StoryRunner.java:287)
   at 
 org.jbehave.core.embedder.StoryRunner.runScenarioSteps(StoryRunner.java:272)
   at org.jbehave.core.embedder.StoryRunner.run(StoryRunner.java:170)
   at org.jbehave.core.embedder.StoryRunner.run(StoryRunner.java:95)
   at 
 org.jbehave.core.embedder.Embedder$EnqueuedStory.call(Embedder.java:686)
   at 
 org.jbehave.core.embedder.Embedder$EnqueuedStory.call(Embedder.java:1)
   at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
   at java.util.concurrent.FutureTask.run(FutureTask.java:138)
   at 
 java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
   at 
 java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
   at java.lang.Thread.run(Thread.java:680)
 Story package.name.here/login/i_can_log_in_with_correct_credentials.story has 
 timed out after 61 seconds
 Generating reports view to 
 '/Users/jonathanwoods/Documents/workspaces/main/mobile/target/jbehave' using 
 formats '[stats, console, txt, html, xml]' and view properties 
 '{decorateNonHtml=true}'
 Reports view generated with 5 stories (of which 2 pending)  containing 3 
 scenarios (of which  0 failed and 3 pending)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



-
To unsubscribe from this list, please visit:

http://xircles.codehaus.org/manage_email




[jbehave-dev] [jira] Commented: (JBEHAVE-474) Pending step method generation fails with And steps

2011-04-12 Thread Mauro Talevi (JIRA)

[ 
http://jira.codehaus.org/browse/JBEHAVE-474?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=263258#action_263258
 ] 

Mauro Talevi commented on JBEHAVE-474:
--

Hi Jon, 

I've added your scenario to the trader pending.story and the problem cannot be 
reproduced, i.e. And steps are well-handled.

From the stacktrace the problem is most probably with your configuration, 
possibly of the keywords.  It seems the for some reason the And keyword or 
step type is not found. 

Can you please provide a little self-contained project that reproduces the 
problem?   Something as simple as the pom.xml and the Stories class and the 
.story file that you are using. 


 Pending step method generation fails with And steps
 ---

 Key: JBEHAVE-474
 URL: http://jira.codehaus.org/browse/JBEHAVE-474
 Project: JBehave
  Issue Type: Bug
  Components: Core
Affects Versions: 3.3.1, 3.4
 Environment: JDK 1.6.0_24 on Mac OS Snow Leopard
Reporter: Jonathan Woods
Priority: Minor

 When I run over a scenario with 'and' steps, pending method generation fails. 
  The same scenario without the 'and' steps generates methods without any 
 problem (and is jolly useful).
 The failure happens in 3.3.1 and in 3.4-SNAPSHOT, commit c27f34.
 The failure results from an NPE; JBehave knows the story has failed, but the 
 run times out and then exits with 'pass' from the JUnit POV.  Is that the 
 expected behaviour, btw?
 Failing scenario:
 Scenario: When I log in with good credentials after having been redirected to 
 the login page from my intended page, I am redirected to my intended page
 Given I am not logged in
 And I have been redirected from my intended page to the login page
 When I log in with good credentials
 Then I am redirected to my intended page
 And I am logged in
 Console output:
 Scenario: When I log in with good credentials after having been redirected to 
 the login page from my intended page, I am redirected to my intended page
 Given I am not logged in (PENDING)
 And I have been redirected from my intended page to the login page (PENDING)
 When I log in with good credentials (PENDING)
 Then I am redirected to my intended page (PENDING)
 And I am logged in (PENDING)
 Failed to run story 
 package.name.here/login/i_can_log_in_with_correct_credentials.story
 java.lang.NullPointerException
   at 
 org.jbehave.core.steps.PendingStepMethodGenerator.stepStartsWithWord(PendingStepMethodGenerator.java:86)
   at 
 org.jbehave.core.steps.PendingStepMethodGenerator.findStepType(PendingStepMethodGenerator.java:64)
   at 
 org.jbehave.core.steps.PendingStepMethodGenerator.generateMethod(PendingStepMethodGenerator.java:32)
   at 
 org.jbehave.core.embedder.StoryRunner.generatePendingStepMethods(StoryRunner.java:287)
   at 
 org.jbehave.core.embedder.StoryRunner.runScenarioSteps(StoryRunner.java:272)
   at org.jbehave.core.embedder.StoryRunner.run(StoryRunner.java:170)
   at org.jbehave.core.embedder.StoryRunner.run(StoryRunner.java:95)
   at 
 org.jbehave.core.embedder.Embedder$EnqueuedStory.call(Embedder.java:686)
   at 
 org.jbehave.core.embedder.Embedder$EnqueuedStory.call(Embedder.java:1)
   at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
   at java.util.concurrent.FutureTask.run(FutureTask.java:138)
   at 
 java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
   at 
 java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
   at java.lang.Thread.run(Thread.java:680)
 Story package.name.here/login/i_can_log_in_with_correct_credentials.story has 
 timed out after 61 seconds
 Generating reports view to 
 '/Users/jonathanwoods/Documents/workspaces/main/mobile/target/jbehave' using 
 formats '[stats, console, txt, html, xml]' and view properties 
 '{decorateNonHtml=true}'
 Reports view generated with 5 stories (of which 2 pending)  containing 3 
 scenarios (of which  0 failed and 3 pending)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



-
To unsubscribe from this list, please visit:

http://xircles.codehaus.org/manage_email




[jbehave-scm] jbehave-tutorial branch, master, updated. 429c3f7156eebdd23ea75448c834219daf0f952d

2011-04-12 Thread git version control
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project jbehave-tutorial.

The branch, master has been updated
   via  429c3f7156eebdd23ea75448c834219daf0f952d (commit)
  from  757f7ca1abc34a4a7e3ffbe7a3e0d50b22f44e5c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 429c3f7156eebdd23ea75448c834219daf0f952d
Author: Mauro Talevi mauro.tal...@aquilonia.org
Date:   Tue Apr 12 16:20:23 2011 +0100

Start of maven archetypes, which are hosted in tutorial for convenience, 
but will probably require a separate repo with their own release cycle.

---

Summary of changes:
 .../jbehave-junit-stories-archetype/pom.xml|   20 
 .../META-INF/maven/archetype-metadata.xml  |   18 
 .../src/main/resources/archetype-resources/pom.xml |  101 
 .../src/main/java/MyStories.java   |   82 
 .../src/main/java/steps/MySteps.java   |   13 +++
 .../src/main/resources/stories/my.story|   10 ++
 .../resources/projects/basic/archetype.properties  |4 +
 maven-archetypes/pom.xml   |   43 
 8 files changed, 291 insertions(+), 0 deletions(-)
 create mode 100644 maven-archetypes/jbehave-junit-stories-archetype/pom.xml
 create mode 100644 
maven-archetypes/jbehave-junit-stories-archetype/src/main/resources/META-INF/maven/archetype-metadata.xml
 create mode 100644 
maven-archetypes/jbehave-junit-stories-archetype/src/main/resources/archetype-resources/pom.xml
 create mode 100644 
maven-archetypes/jbehave-junit-stories-archetype/src/main/resources/archetype-resources/src/main/java/MyStories.java
 create mode 100644 
maven-archetypes/jbehave-junit-stories-archetype/src/main/resources/archetype-resources/src/main/java/steps/MySteps.java
 create mode 100644 
maven-archetypes/jbehave-junit-stories-archetype/src/main/resources/archetype-resources/src/main/resources/stories/my.story
 create mode 100644 
maven-archetypes/jbehave-junit-stories-archetype/src/test/resources/projects/basic/archetype.properties
 create mode 100644 
maven-archetypes/jbehave-junit-stories-archetype/src/test/resources/projects/basic/goal.txt
 create mode 100644 maven-archetypes/pom.xml


hooks/post-receive
-- 
jbehave-tutorial

hr/
p
To unsubscribe from this list please visit:
/p
p
a 
href=http://xircles.codehaus.org/manage_email;http://xircles.codehaus.org/manage_email/a



[jbehave-dev] [jira] Updated: (JBEHAVE-474) Pending step method generation fails with And steps

2011-04-12 Thread Mauro Talevi (JIRA)

 [ 
http://jira.codehaus.org/browse/JBEHAVE-474?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Mauro Talevi updated JBEHAVE-474:
-

Fix Version/s: 3.4

 Pending step method generation fails with And steps
 ---

 Key: JBEHAVE-474
 URL: http://jira.codehaus.org/browse/JBEHAVE-474
 Project: JBehave
  Issue Type: Bug
  Components: Core
Affects Versions: 3.3.1
 Environment: JDK 1.6.0_24 on Mac OS Snow Leopard
Reporter: Jonathan Woods
Assignee: Mauro Talevi
Priority: Minor
 Fix For: 3.4, 3.3.2


 When I run over a scenario with 'and' steps, pending method generation fails. 
  The same scenario without the 'and' steps generates methods without any 
 problem (and is jolly useful).
 The failure happens in 3.3.1 and in 3.4-SNAPSHOT, commit c27f34.
 The failure results from an NPE; JBehave knows the story has failed, but the 
 run times out and then exits with 'pass' from the JUnit POV.  Is that the 
 expected behaviour, btw?
 Failing scenario:
 Scenario: When I log in with good credentials after having been redirected to 
 the login page from my intended page, I am redirected to my intended page
 Given I am not logged in
 And I have been redirected from my intended page to the login page
 When I log in with good credentials
 Then I am redirected to my intended page
 And I am logged in
 Console output:
 Scenario: When I log in with good credentials after having been redirected to 
 the login page from my intended page, I am redirected to my intended page
 Given I am not logged in (PENDING)
 And I have been redirected from my intended page to the login page (PENDING)
 When I log in with good credentials (PENDING)
 Then I am redirected to my intended page (PENDING)
 And I am logged in (PENDING)
 Failed to run story 
 package.name.here/login/i_can_log_in_with_correct_credentials.story
 java.lang.NullPointerException
   at 
 org.jbehave.core.steps.PendingStepMethodGenerator.stepStartsWithWord(PendingStepMethodGenerator.java:86)
   at 
 org.jbehave.core.steps.PendingStepMethodGenerator.findStepType(PendingStepMethodGenerator.java:64)
   at 
 org.jbehave.core.steps.PendingStepMethodGenerator.generateMethod(PendingStepMethodGenerator.java:32)
   at 
 org.jbehave.core.embedder.StoryRunner.generatePendingStepMethods(StoryRunner.java:287)
   at 
 org.jbehave.core.embedder.StoryRunner.runScenarioSteps(StoryRunner.java:272)
   at org.jbehave.core.embedder.StoryRunner.run(StoryRunner.java:170)
   at org.jbehave.core.embedder.StoryRunner.run(StoryRunner.java:95)
   at 
 org.jbehave.core.embedder.Embedder$EnqueuedStory.call(Embedder.java:686)
   at 
 org.jbehave.core.embedder.Embedder$EnqueuedStory.call(Embedder.java:1)
   at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
   at java.util.concurrent.FutureTask.run(FutureTask.java:138)
   at 
 java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
   at 
 java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
   at java.lang.Thread.run(Thread.java:680)
 Story package.name.here/login/i_can_log_in_with_correct_credentials.story has 
 timed out after 61 seconds
 Generating reports view to 
 '/Users/jonathanwoods/Documents/workspaces/main/mobile/target/jbehave' using 
 formats '[stats, console, txt, html, xml]' and view properties 
 '{decorateNonHtml=true}'
 Reports view generated with 5 stories (of which 2 pending)  containing 3 
 scenarios (of which  0 failed and 3 pending)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



-
To unsubscribe from this list, please visit:

http://xircles.codehaus.org/manage_email




[jbehave-dev] [jira] Resolved: (JBEHAVE-474) Pending step method generation fails with And steps

2011-04-12 Thread Mauro Talevi (JIRA)

 [ 
http://jira.codehaus.org/browse/JBEHAVE-474?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Mauro Talevi resolved JBEHAVE-474.
--

Resolution: Fixed

Mystery solved:  the problem manifested itself only if there are no step 
candidates, i.e. no annotated methods in your Steps class.  

In any case, the mechanism to look for the previous non-And step has now been 
refactored to not depend on the presence of step candidates.


 Pending step method generation fails with And steps
 ---

 Key: JBEHAVE-474
 URL: http://jira.codehaus.org/browse/JBEHAVE-474
 Project: JBehave
  Issue Type: Bug
  Components: Core
Affects Versions: 3.3.1
 Environment: JDK 1.6.0_24 on Mac OS Snow Leopard
Reporter: Jonathan Woods
Assignee: Mauro Talevi
Priority: Minor
 Fix For: 3.4, 3.3.2


 When I run over a scenario with 'and' steps, pending method generation fails. 
  The same scenario without the 'and' steps generates methods without any 
 problem (and is jolly useful).
 The failure happens in 3.3.1 and in 3.4-SNAPSHOT, commit c27f34.
 The failure results from an NPE; JBehave knows the story has failed, but the 
 run times out and then exits with 'pass' from the JUnit POV.  Is that the 
 expected behaviour, btw?
 Failing scenario:
 Scenario: When I log in with good credentials after having been redirected to 
 the login page from my intended page, I am redirected to my intended page
 Given I am not logged in
 And I have been redirected from my intended page to the login page
 When I log in with good credentials
 Then I am redirected to my intended page
 And I am logged in
 Console output:
 Scenario: When I log in with good credentials after having been redirected to 
 the login page from my intended page, I am redirected to my intended page
 Given I am not logged in (PENDING)
 And I have been redirected from my intended page to the login page (PENDING)
 When I log in with good credentials (PENDING)
 Then I am redirected to my intended page (PENDING)
 And I am logged in (PENDING)
 Failed to run story 
 package.name.here/login/i_can_log_in_with_correct_credentials.story
 java.lang.NullPointerException
   at 
 org.jbehave.core.steps.PendingStepMethodGenerator.stepStartsWithWord(PendingStepMethodGenerator.java:86)
   at 
 org.jbehave.core.steps.PendingStepMethodGenerator.findStepType(PendingStepMethodGenerator.java:64)
   at 
 org.jbehave.core.steps.PendingStepMethodGenerator.generateMethod(PendingStepMethodGenerator.java:32)
   at 
 org.jbehave.core.embedder.StoryRunner.generatePendingStepMethods(StoryRunner.java:287)
   at 
 org.jbehave.core.embedder.StoryRunner.runScenarioSteps(StoryRunner.java:272)
   at org.jbehave.core.embedder.StoryRunner.run(StoryRunner.java:170)
   at org.jbehave.core.embedder.StoryRunner.run(StoryRunner.java:95)
   at 
 org.jbehave.core.embedder.Embedder$EnqueuedStory.call(Embedder.java:686)
   at 
 org.jbehave.core.embedder.Embedder$EnqueuedStory.call(Embedder.java:1)
   at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
   at java.util.concurrent.FutureTask.run(FutureTask.java:138)
   at 
 java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
   at 
 java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
   at java.lang.Thread.run(Thread.java:680)
 Story package.name.here/login/i_can_log_in_with_correct_credentials.story has 
 timed out after 61 seconds
 Generating reports view to 
 '/Users/jonathanwoods/Documents/workspaces/main/mobile/target/jbehave' using 
 formats '[stats, console, txt, html, xml]' and view properties 
 '{decorateNonHtml=true}'
 Reports view generated with 5 stories (of which 2 pending)  containing 3 
 scenarios (of which  0 failed and 3 pending)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira



-
To unsubscribe from this list, please visit:

http://xircles.codehaus.org/manage_email




[jbehave-scm] jbehave-core branch, master, updated. jbehave-3.3.1-8-g5f0150d

2011-04-12 Thread git version control
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project jbehave-core.

The branch, master has been updated
   via  5f0150d2c828680c872d44f97107acb031a1e582 (commit)
  from  ea184e5cfce4623fb01a72ab954f952d24332def (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 5f0150d2c828680c872d44f97107acb031a1e582
Author: Mauro Talevi mauro.tal...@aquilonia.org
Date:   Wed Apr 13 00:51:55 2011 +0100

Updated release notes.

---

Summary of changes:
 distribution/src/site/content/release-notes.html |9 +
 1 files changed, 9 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
jbehave-core

hr/
p
To unsubscribe from this list please visit:
/p
p
a 
href=http://xircles.codehaus.org/manage_email;http://xircles.codehaus.org/manage_email/a



[jbehave-scm] jbehave-tutorial branch, master, updated. 62e495409c3a12676134fb4dc59fba6fbb40b8e4

2011-04-12 Thread git version control
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project jbehave-tutorial.

The branch, master has been updated
   via  62e495409c3a12676134fb4dc59fba6fbb40b8e4 (commit)
  from  429c3f7156eebdd23ea75448c834219daf0f952d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -
commit 62e495409c3a12676134fb4dc59fba6fbb40b8e4
Author: Mauro Talevi mauro.tal...@aquilonia.org
Date:   Wed Apr 13 01:07:21 2011 +0100

Removed dependency of archetypes from parent pom.

---

Summary of changes:
 .../src/main/resources/stories/my.story|2 +-
 maven-archetypes/pom.xml   |6 --
 2 files changed, 1 insertions(+), 7 deletions(-)


hooks/post-receive
-- 
jbehave-tutorial

hr/
p
To unsubscribe from this list please visit:
/p
p
a 
href=http://xircles.codehaus.org/manage_email;http://xircles.codehaus.org/manage_email/a