Sha256: 18b9678a117a37e6391c198f860dc54e61cbcd3c3a46b99f8de230e4f93e3088
Contents?: true
Size: 927 Bytes
Versions: 83
Compression:
Stored size: 927 Bytes
Contents
require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/../../spec_helper' describe "Regexp#options" do it "returns a Fixnum bitvector of regexp options for the Regexp object" do /cat/.options.class.should == Fixnum /cat/ix.options.class.should == Fixnum end it "allows checking for presence of a certain option with bitwise &" do (/cat/.options & Regexp::IGNORECASE).should == 0 (/cat/i.options & Regexp::IGNORECASE).should_not == 0 (/cat/.options & Regexp::MULTILINE).should == 0 (/cat/m.options & Regexp::MULTILINE).should_not == 0 (/cat/.options & Regexp::EXTENDED).should == 0 (/cat/x.options & Regexp::EXTENDED).should_not == 0 (/cat/mx.options & Regexp::MULTILINE).should_not == 0 (/cat/mx.options & Regexp::EXTENDED).should_not == 0 (/cat/xi.options & Regexp::IGNORECASE).should_not == 0 (/cat/xi.options & Regexp::EXTENDED).should_not == 0 end end
Version data entries
83 entries across 83 versions & 1 rubygems