aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/regexp/initialize_spec.rb
blob: 026348b1dd5f4c18a59550abd3563be1f2aef917 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require_relative '../../spec_helper'

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