mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Update to ruby/spec@4eec3dc
This commit is contained in:
parent
ab8345271e
commit
1243255c3a
174 changed files with 1780 additions and 426 deletions
6
spec/ruby/core/module/fixtures/multi/foo.rb
Normal file
6
spec/ruby/core/module/fixtures/multi/foo.rb
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
module ModuleSpecs::Autoload
|
||||
module Foo
|
||||
autoload :Bar, 'foo/bar_baz'
|
||||
autoload :Baz, 'foo/bar_baz'
|
||||
end
|
||||
end
|
||||
11
spec/ruby/core/module/fixtures/multi/foo/bar_baz.rb
Normal file
11
spec/ruby/core/module/fixtures/multi/foo/bar_baz.rb
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
require 'foo'
|
||||
|
||||
module ModuleSpecs::Autoload
|
||||
module Foo
|
||||
class Bar
|
||||
end
|
||||
|
||||
class Baz
|
||||
end
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue