[jbehave-scm] jbehave-tutorial branch, master, updated. b210e64c19e64664d6863caf7effab9c3aaee87f

2011-04-29 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  b210e64c19e64664d6863caf7effab9c3aaee87f (commit)
  from  4164b59e7c389ea209e83e97cd330487276c1080 (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 b210e64c19e64664d6863caf7effab9c3aaee87f
Author: Paul Hammant p...@hammant.org
Date:   Fri Apr 29 09:37:18 2011 -0500

remove unused imports

---

Summary of changes:
 .../jbehave/tutorials/etsy/EtsyDotComStories.java  |2 --
 1 files changed, 0 insertions(+), 2 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



[jbehave-scm] jbehave-tutorial branch, master, updated. 03582d5d81a5dda31cd880c507c24cffba81838f

2011-04-29 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  03582d5d81a5dda31cd880c507c24cffba81838f (commit)
  from  b210e64c19e64664d6863caf7effab9c3aaee87f (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 03582d5d81a5dda31cd880c507c24cffba81838f
Author: Mauro Talevi mauro.tal...@aquilonia.org
Date:   Fri Apr 29 17:49:25 2011 +0200

Removed unused imports in groovy code.

---

Summary of changes:
 .../src/main/groovy/pages/AdvancedSearch.groovy|1 -
 etsy-stories/src/main/groovy/pages/Buy.groovy  |1 -
 .../src/main/groovy/pages/CartContents.groovy  |1 -
 etsy-stories/src/main/groovy/pages/Home.groovy |1 -
 .../src/main/groovy/pages/SearchResults.groovy |1 -
 etsy-stories/src/main/groovy/pages/Site.groovy |1 -
 etsy-stories/src/main/groovy/pages/Treasury.groovy |1 -
 7 files changed, 0 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



[jbehave-dev] [jira] Updated: (JBEHAVE-492) CandidateSteps instances should be created by StoryRunner context allowing for multi-threaded stateful steps logic

2011-04-29 Thread Mauro Talevi (JIRA)

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

Mauro Talevi updated JBEHAVE-492:
-

Summary: CandidateSteps instances should be created by StoryRunner context 
allowing for multi-threaded stateful steps logic  (was: 
ConfigurableEmbedder.addSteps(..) should take classes not instances.)

 CandidateSteps instances should be created by StoryRunner context allowing 
 for multi-threaded stateful steps logic
 --

 Key: JBEHAVE-492
 URL: http://jira.codehaus.org/browse/JBEHAVE-492
 Project: JBehave
  Issue Type: New Feature
  Components: Core
Affects Versions: 3.x
Reporter: Paul Hammant
 Fix For: 3.x


 public void addSteps(ListClass steps) {
 }
 ... would be better.
 Why?  There's an instance that's made during the setup of a suite (refer 
 EtsyStories).  If you are running in multi-threaded mode, that **initial** 
 instance is **never** used during the running of scenarios.
 In multi-threaded mode, there's a constructor for BasePage that takes a 
 WebDriverProvider.  When it is passed in during the primordial instantiation 
 phase, no WebDriver has been initialized.  We don't want to do that of course 
 because (a) we know this **initial** instance is going to be garbage 
 collected and never used, and (b) on SauceLabs at least it would result in 
 browser opening in the cloud then closing (or maybe not closing, but never 
 used; I'm not sure).
 JBehave does not actually need the **initial** instance.  I believe this is 
 provable. Instead it could perfectly well use the class definition without 
 the instance ref somehow.   
 Proposal:  Long overdue, I think, but could for 4.x we shift to using 
 class-defs.  Either rework CandidateSteps to hold a Class rather than an 
 instance.  Or further do a away (move the logic elsewhere) with 
 CandidateSteps, and use the POJO Step's class-def directly. 

-- 
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. af1d076a16d178f85dce09bedb703361624b5931

2011-04-29 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  af1d076a16d178f85dce09bedb703361624b5931 (commit)
  from  03582d5d81a5dda31cd880c507c24cffba81838f (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 af1d076a16d178f85dce09bedb703361624b5931
Author: Paul Hammant p...@hammant.org
Date:   Fri Apr 29 13:07:01 2011 -0500

let pico manage instances too

---

Summary of changes:
 .../jbehave/tutorials/etsy/EtsyDotComStories.java  |8 
 1 files changed, 4 insertions(+), 4 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



[jbehave-scm] jbehave-tutorial branch, master, updated. 36de1b45023a258266240a6d4dfc3824e638ce1d

2011-04-29 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  36de1b45023a258266240a6d4dfc3824e638ce1d (commit)
  from  af1d076a16d178f85dce09bedb703361624b5931 (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 36de1b45023a258266240a6d4dfc3824e638ce1d
Author: Paul Hammant p...@hammant.org
Date:   Fri Apr 29 13:26:08 2011 -0500

let pico manage instances too, part deux

---

Summary of changes:
 .../jbehave/tutorials/etsy/EtsyDotComStories.java  |   19 ---
 1 files changed, 8 insertions(+), 11 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



[jbehave-scm] jbehave-core branch, master, updated. jbehave-3.4-beta-2-6-gfa33de8

2011-04-29 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  fa33de898712f93f89dc991c6f21ba11e686647b (commit)
  from  08c29067ff59c32ed96c4acea5f7254ccdb8455a (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 fa33de898712f93f89dc991c6f21ba11e686647b
Author: Paul Hammant p...@hammant.org
Date:   Fri Apr 29 19:46:59 2011 -0500

upgrade groovy JB-495

---

Summary of changes:
 jbehave-groovy/pom.xml |2 +-
 1 files changed, 1 insertions(+), 1 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] Created: (JBEHAVE-495) Upgrade Groovy dependency to 1.8.0

2011-04-29 Thread Paul Hammant (JIRA)
Upgrade Groovy dependency to 1.8.0
--

 Key: JBEHAVE-495
 URL: http://jira.codehaus.org/browse/JBEHAVE-495
 Project: JBehave
  Issue Type: Improvement
  Components: Groovy Support
Reporter: Paul Hammant
Assignee: Paul Hammant
 Fix For: 3.4




-- 
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. 53960b91dd55d581c2f1ad2b652b84271af7a554

2011-04-29 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  53960b91dd55d581c2f1ad2b652b84271af7a554 (commit)
   via  aa2d90f3c5f671dad1137991f313cfdc40fdbd77 (commit)
  from  36de1b45023a258266240a6d4dfc3824e638ce1d (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 53960b91dd55d581c2f1ad2b652b84271af7a554
Author: Paul Hammant p...@hammant.org
Date:   Fri Apr 29 19:50:07 2011 -0500

upgrade groovy - JB-495

commit aa2d90f3c5f671dad1137991f313cfdc40fdbd77
Author: Paul Hammant p...@hammant.org
Date:   Fri Apr 29 14:30:18 2011 -0500

use PicoStepsFactory instead of addSteps()

---

Summary of changes:
 .../jbehave/tutorials/etsy/EtsyDotComStories.java  |6 +++---
 pom.xml|2 +-
 2 files changed, 4 insertions(+), 4 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