mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
13 lines
268 B
Ruby
13 lines
268 B
Ruby
require_relative '../../spec_helper'
|
|
|
|
describe "Data" do
|
|
it "is a subclass of Object" do
|
|
suppress_warning do
|
|
Data.superclass.should == Object
|
|
end
|
|
end
|
|
|
|
it "is deprecated" do
|
|
-> { Data }.should complain(/constant ::Data is deprecated/)
|
|
end
|
|
end
|