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

Version Path
rhodes-7.6.0 spec/framework_spec/app/spec/core/regexp/last_match_spec.rb
rhodes-7.5.1 spec/framework_spec/app/spec/core/regexp/last_match_spec.rb
rhodes-7.4.1 spec/framework_spec/app/spec/core/regexp/last_match_spec.rb
rhodes-7.1.17 spec/framework_spec/app/spec/core/regexp/last_match_spec.rb
rhodes-6.2.0 spec/framework_spec/app/spec/core/regexp/last_match_spec.rb
rhodes-6.0.11 spec/framework_spec/app/spec/core/regexp/last_match_spec.rb
rhodes-5.5.18 spec/framework_spec/app/spec/core/regexp/last_match_spec.rb
rhodes-5.5.17 spec/framework_spec/app/spec/core/regexp/last_match_spec.rb
rhodes-5.5.15 spec/framework_spec/app/spec/core/regexp/last_match_spec.rb
rhodes-5.5.0.22 spec/framework_spec/app/spec/core/regexp/last_match_spec.rb
rhodes-5.5.2 spec/framework_spec/app/spec/core/regexp/last_match_spec.rb
rhodes-5.5.0.7 spec/framework_spec/app/spec/core/regexp/last_match_spec.rb
rhodes-5.5.0.3 spec/framework_spec/app/spec/core/regexp/last_match_spec.rb
rhodes-5.5.0 spec/framework_spec/app/spec/core/regexp/last_match_spec.rb
tauplatform-1.0.3 spec/framework_spec/app/spec/core/regexp/last_match_spec.rb
tauplatform-1.0.2 spec/framework_spec/app/spec/core/regexp/last_match_spec.rb
tauplatform-1.0.1 spec/framework_spec/app/spec/core/regexp/last_match_spec.rb
rhodes-3.5.1.12 spec/framework_spec/app/spec/core/regexp/last_match_spec.rb
rhodes-3.3.5 spec/framework_spec/app/spec/core/regexp/last_match_spec.rb
rhodes-3.4.2 spec/framework_spec/app/spec/core/regexp/last_match_spec.rb