summaryrefslogtreecommitdiff
path: root/spec/ruby/core/matchdata/regexp_spec.rb
blob: 099b59c55918ee95916b377101be17af0915cb36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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 the same Regexp used to match" do
    r = /hay/
    m = 'haystack'.match(r)
    m.regexp.object_id.should == r.object_id
  end

  it "returns a Regexp for the result of gsub(String)" do
    'he[[o'.gsub('[', ']')
    $~.regexp.should == /\[/
  end
end