1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/core/module/allocate_spec.rb

15 lines
362 B
Ruby
Raw Normal View History

require File.expand_path('../../../spec_helper', __FILE__)
describe "Module.allocate" do
it "returns an instance of Module" do
mod = Module.allocate
mod.should be_an_instance_of(Module)
end
it "returns a fully-formed instance of Module" do
mod = Module.allocate
mod.constants.should_not == nil
mod.methods.should_not == nil
end
end