aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/module
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-03-28 23:56:14 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-03-28 23:56:14 -0700
commit7bcfff4457d98afca43b72c5ecb083fb6cab0a93 (patch)
tree6bc2ed28b8333cc8fe5db54c087ad90f4ec510ac /activesupport/test/core_ext/module
parente0f56fc96d539db8f94ed6c8ef0ec2a4bddf6393 (diff)
downloadrails-7bcfff4457d98afca43b72c5ecb083fb6cab0a93.tar.gz
rails-7bcfff4457d98afca43b72c5ecb083fb6cab0a93.tar.bz2
rails-7bcfff4457d98afca43b72c5ecb083fb6cab0a93.zip
Explicit test dependencies
Diffstat (limited to 'activesupport/test/core_ext/module')
-rw-r--r--activesupport/test/core_ext/module/synchronization_test.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/activesupport/test/core_ext/module/synchronization_test.rb b/activesupport/test/core_ext/module/synchronization_test.rb
index c28bc9b073..43d65ab249 100644
--- a/activesupport/test/core_ext/module/synchronization_test.rb
+++ b/activesupport/test/core_ext/module/synchronization_test.rb
@@ -1,5 +1,8 @@
require 'abstract_unit'
+require 'active_support/core_ext/class/attribute_accessors'
+require 'active_support/core_ext/module/synchronization'
+
class SynchronizationTest < Test::Unit::TestCase
def setup
@target = Class.new
@@ -82,4 +85,4 @@ class SynchronizationTest < Test::Unit::TestCase
assert_nothing_raised { @target.to_s; @target.to_s }
assert_equal 2, @target.mutex.sync_count
end
-end \ No newline at end of file
+end