Sha256: ed883071b1a6d87b6ddbe719eb5b3c63d3b88b831f5855fdf9f0b0390c545567
Contents?: true
Size: 376 Bytes
Versions: 52
Compression:
Stored size: 376 Bytes
Contents
require File.expand_path('../../../spec_helper', __FILE__) describe "Regexp.last_match" do it "returns MatchData instance when not passed arguments" do /c(.)t/ =~ 'cat' Regexp.last_match.should be_kind_of(MatchData) end it "returns the nth field in this MatchData when passed a Fixnum" do /c(.)t/ =~ 'cat' Regexp.last_match(1).should == 'a' end end
Version data entries
52 entries across 52 versions & 2 rubygems