summaryrefslogtreecommitdiff
path: root/spec/ruby/core/matchdata/to_s_spec.rb
blob: 9e213bb342d019b2111727a67100bb86f2d9846e (plain)
1
2
3
4
5
6
7
require_relative '../../spec_helper'

describe "MatchData#to_s" do
  it "returns the entire matched string" do
    /(.)(.)(\d+)(\d)/.match("THX1138.").to_s.should == "HX1138"
  end
end