Sha256: a6c704a42a16292fdc418425d57e5777b7bd7d9f18a9289a2c1e911842de287b
Contents?: true
Size: 257 Bytes
Versions: 52
Compression:
Stored size: 257 Bytes
Contents
require File.expand_path('../../../spec_helper', __FILE__) describe "Regexp#===" do it "is true if there is a match" do (/abc/ === "aabcc").should == true end it "is false if there is no match" do (/abc/ === "xyz").should == false end end
Version data entries
52 entries across 52 versions & 2 rubygems