Commit 9cbc4621 authored by Jérome Perrin's avatar Jérome Perrin

support zc.recipe.testrunner recipe

parent 9f37fa98
...@@ -264,7 +264,7 @@ def bom_software(installed_software_path): # -> {} (name,kind) -> PkgInfo ...@@ -264,7 +264,7 @@ def bom_software(installed_software_path): # -> {} (name,kind) -> PkgInfo
for gemspec in glob('%s/lib/ruby/gems/specifications/*.gemspec' % location): for gemspec in glob('%s/lib/ruby/gems/specifications/*.gemspec' % location):
addbom(gemspec, 'gem') addbom(gemspec, 'gem')
elif recipe in ('plone.recipe.command',): elif recipe in ('plone.recipe.command', 'zc.recipe.testrunner',):
# not downloading anything # not downloading anything
pass pass
......
...@@ -453,6 +453,13 @@ case1("""\ ...@@ -453,6 +453,13 @@ case1("""\
recipe = plone.recipe.command==1.1 recipe = plone.recipe.command==1.1
""", '') """, '')
# zc.recipe.testrunner is ignored
case1("""\
[dream-testrunner]
recipe = zc.recipe.testrunner
eggs = dream
""", '')
# ruby gems # ruby gems
case1("""\ case1("""\
[gems] [gems]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment