git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64179 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eregon 2018-08-03 16:19:10 +00:00
Родитель a2c7d0cea9
Коммит aeeaadaad0
5 изменённых файлов: 41 добавлений и 33 удалений

26
spec/mspec/.gitignore поставляемый
Просмотреть файл

@ -1,26 +0,0 @@
pkg
*.rbc
*.iml
*.iws
*.ipr
*.sw?
.rbx
# ctags dir
/tags
*.gem
.bundle
.config
.yardoc
InstalledFiles
_yardoc
coverage
doc/
lib/bundler/man
rdoc
spec/reports
test/tmp
test/version_tmp
tmp

Просмотреть файл

@ -1,4 +1,3 @@
require 'bundler/gem_tasks'
require 'bundler/setup'
require 'rspec/core/rake_task'

Просмотреть файл

@ -1,7 +1,23 @@
require 'mspec/runner/filters/match'
class RegexpFilter < MatchFilter
def to_regexp(*strings)
strings.map { |str| Regexp.new str }
class RegexpFilter
def initialize(what, *regexps)
@what = what
@regexps = to_regexp(*regexps)
end
def ===(string)
@regexps.any? { |regexp| regexp === string }
end
def register
MSpec.register @what, self
end
def unregister
MSpec.unregister @what, self
end
def to_regexp(*regexps)
regexps.map { |str| Regexp.new str }
end
private :to_regexp
end

Просмотреть файл

@ -2,12 +2,30 @@ require File.dirname(__FILE__) + '/../../spec_helper'
require 'mspec/runner/mspec'
require 'mspec/runner/filters/regexp'
describe MatchFilter, "#===" do
before :each do
@filter = RegexpFilter.new nil, 'a(b|c)', 'b[^ab]', 'cc?'
end
it "returns true if the argument matches any of the #initialize strings" do
@filter.===('ab').should == true
@filter.===('bc suffix').should == true
@filter.===('prefix cc').should == true
end
it "returns false if the argument matches none of the #initialize strings" do
@filter.===('aa').should == false
@filter.===('ba').should == false
@filter.===('prefix d suffix').should == false
end
end
describe RegexpFilter, "#to_regexp" do
before :each do
@filter = RegexpFilter.new nil
end
it "converts its arguments to Regexp instances" do
@filter.to_regexp('a(b|c)', 'b[^ab]', 'cc?').should == [/a(b|c)/, /b[^ab]/, /cc?/]
@filter.send(:to_regexp, 'a(b|c)', 'b[^ab]', 'cc?').should == [/a(b|c)/, /b[^ab]/, /cc?/]
end
end

Просмотреть файл

@ -7,6 +7,7 @@ rm -rf spec/mspec
git clone --depth 1 https://github.com/ruby/mspec.git spec/mspec
commit=$(git -C spec/mspec log -n 1 --format='%h')
rm -rf spec/mspec/.git
rm -f spec/mspec/.travis.yml
git add spec/mspec
git commit -m "Update to ruby/mspec@${commit}"