On 29/04/2009, at 8:54 PM, David Chelimsky wrote:

On Wed, Apr 29, 2009 at 1:23 AM, Marty Andrews <ma...@martyandrews.net> wrote:
I'd like to load all of my examples into memory without actually
running them, so I can traverse the object tree and get descriptions
etc.  I'm finding it tricky to figure out how to do that though.
There seems to be an inherent assumption in the framework that that
examples will actually run.

So basically, I want to do something like this:

examples = load_examples_without_running
examples.each {|example| puts example.description}

[snip]

As for getting a handle on the objects, this is something that is not
really baked into RSpec, but will definitely be baked into rspec-2.0.
Work on this will start later this year (probably not until after the
rspec book is off to print). Goals for it include a very clean
separation of the DSL and the underlying object model and a very
lightweight runner.

So in the short run, your best option is to use --dry-run and
understand that you only get value out of it if you write docstrings
for all of your examples.

Ok. It's actually a bit more complicate than that. Let me give you an insight into where I'm headed.

I'm working into a big corporate in Australia, and they are demanding traceability of tests back to requirements. I'm already using Mingle to manage story cards, and I'm hoping to let the testers build in the traceability via code. So I've got a Mixin to the examples so that I can declare the id of the story that the test maps to. It looks something like this:

describe FunctionalArea do
  it "automates some acceptance test declared on a story" do
    traces_to_story 35
    # test implementation
  end
end

So now, I want to be able to walk the object tree, getting the descriptions *and* the story id's. Mingle has a nice RESTful API that I've already used to slurp up detail about stories. Now I just want to wire in this last bit of information to tick the traceability box without any human needing to do the work.

I'll have a look at the --dry-run option and see where it gets me. If you've got any more tips, let me know. I'll send in a code snippet if I manage to get it going :)

-- Marty

_______________________________________________
rspec-users mailing list
rspec-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/rspec-users

Reply via email to