aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/dependencies
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/test/dependencies')
-rw-r--r--activesupport/test/dependencies/service_one.rb5
-rw-r--r--activesupport/test/dependencies/service_two.rb2
2 files changed, 7 insertions, 0 deletions
diff --git a/activesupport/test/dependencies/service_one.rb b/activesupport/test/dependencies/service_one.rb
new file mode 100644
index 0000000000..f43bfea235
--- /dev/null
+++ b/activesupport/test/dependencies/service_one.rb
@@ -0,0 +1,5 @@
+$loaded_service_one ||= 0
+$loaded_service_one += 1
+
+class ServiceOne
+end \ No newline at end of file
diff --git a/activesupport/test/dependencies/service_two.rb b/activesupport/test/dependencies/service_two.rb
new file mode 100644
index 0000000000..5205a78bb8
--- /dev/null
+++ b/activesupport/test/dependencies/service_two.rb
@@ -0,0 +1,2 @@
+class ServiceTwo
+end \ No newline at end of file