aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/autoloading_fixtures/counting_loader.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/test/autoloading_fixtures/counting_loader.rb')
-rw-r--r--activesupport/test/autoloading_fixtures/counting_loader.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/activesupport/test/autoloading_fixtures/counting_loader.rb b/activesupport/test/autoloading_fixtures/counting_loader.rb
new file mode 100644
index 0000000000..4225c4412c
--- /dev/null
+++ b/activesupport/test/autoloading_fixtures/counting_loader.rb
@@ -0,0 +1,5 @@
+$counting_loaded_times ||= 0
+$counting_loaded_times += 1
+
+module CountingLoader
+end