Hi everybody,

I want to create an rspec formatter that will out the xml for the mind map 
building. I'm QA and want to create checklists based on test scenarios 
 created in spec files. And it works now, but I'd like to use a lot of Mind 
map features like tags, icons, links, attached descriptions for each node. 
And I use metadata for this point. 
The trouble is: when I assign some metadata tags to example group all 
nested ones are inherit these tags, so all nested nodes in mind map file 
will have all these info until be override.

So the question is:

Is there some possibility to temporarily turn off the tags-inheriting 
feature? otherwise I need to override all tags each time for each node to 
'nil' (now it works for me fine, but makes the code awful to read):


describe 'Sidebar', link: nil, user_story: nil do
  describe 'Album info widget', link: 'https://www.google.com', user_story:
 true do
    it 'something', link: nil, user_story: nil
  end
  describe 'Photo Albums widget', link: 'https://www.google.com', 
user_story: true do
    it 'something', link: nil, user_story: nil
  end
end

-- 
You received this message because you are subscribed to the Google Groups 
"rspec" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rspec/b0d6a18d-e29e-4f24-b450-3788e84260f1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to