blob: 7a4783434c62d67d10f613289564061813b36eaf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require_relative '../../spec_helper'
describe "MatchData#regexp" do
it "returns a Regexp object" do
m = 'haystack'.match(/hay/)
m.regexp.should be_an_instance_of(Regexp)
end
it "returns the pattern used in the match" do
m = 'haystack'.match(/hay/)
m.regexp.should == /hay/
end
it "returns a Regexp for the result of gsub(String)" do
'he[[o'.gsub('[', ']')
$~.regexp.should == /\[/
end
end
|