blob: 142ce639c2096518dd1a56acf6488c4475823741 (
plain)
1
2
3
4
5
6
7
8
|
require_relative '../../spec_helper'
describe "MatchData.allocate" do
it "is undefined" do
# https://bugs.ruby-lang.org/issues/16294
-> { MatchData.allocate }.should raise_error(NoMethodError)
end
end
|