aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/core/regexp/initialize_spec.rb
blob: 3c32f97a3152c4e46c490fc3ceabff62205b3c1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require File.expand_path('../../../spec_helper', __FILE__)

describe "Regexp#initialize" do
  it "is a private method" do
    Regexp.should have_private_method(:initialize)
  end

  it "raises a SecurityError on a Regexp literal" do
    lambda { //.send(:initialize, "") }.should raise_error(SecurityError)
  end

  it "raises a TypeError on an initialized non-literal Regexp" do
    lambda { Regexp.new("").send(:initialize, "") }.should raise_error(TypeError)
  end
end