假设我想要以下规格:
it { should allow_value("git://host.xz/path/to/repo.git/").for(:url) }
it { should allow_value("git://user@host.xz/path/to/repo.git/").for(:url) }
it { should allow_value("git://host.xz:123/path/to/repo.git/").for(:url) }
it { should allow_value("git://user@host.xz:123/path/to/repo.git/").for(:url) }
...
如果我可以这样写会更容易,更紧凑:
"git://{user@,}host.xz{:123,}/path/to/repo.git".expand.each do |p|
it { should allow_value(p).for(:url) }
end
甚至更好:
"{git,ssh,http,https,rsync}://[user@]host.xz[:123]/path/to/repo.git[/]".expand.each do |p|
it { should allow_value(p).for(:url) }
end
有哪些方法可以在 Ruby 中实现这一点?
编辑 我尝试的第一件事是basscomp,但我无法让它在 1.9.3 中工作。
[1] pry(main)> require 'bracecomp'
[2] pry(main)> 'server-{a,b}-{07..10}'.expand
TypeError: scan() yielded Symbol (must be Array[2])
from bracecomp.y:66:in `scan'