summaryrefslogtreecommitdiff
path: root/spec/ruby/core/matchdata/regexp_spec.rb
blob: 05a8e80567c036b11a234261f4fe5dfcbe345102 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
end