Sha256: 6483b2c93ddd22a016c6726a5bc47f5d8e1ce7e4fcc754e5f8e6c6cbbe4b34af
Contents?: true
Size: 287 Bytes
Versions: 83
Compression:
Stored size: 287 Bytes
Contents
require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/../../spec_helper' 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
83 entries across 83 versions & 1 rubygems