diff options
Diffstat (limited to 'activesupport/test/autoloading_fixtures/prepend.rb')
-rw-r--r-- | activesupport/test/autoloading_fixtures/prepend.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/activesupport/test/autoloading_fixtures/prepend.rb b/activesupport/test/autoloading_fixtures/prepend.rb new file mode 100644 index 0000000000..3134d1df2b --- /dev/null +++ b/activesupport/test/autoloading_fixtures/prepend.rb @@ -0,0 +1,8 @@ +class SubClassConflict +end + +class Prepend + module PrependedModule + end + prepend PrependedModule +end |