aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/locking_test.rb
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2007-01-05 00:12:06 +0000
committerMichael Koziarski <michael@koziarski.com>2007-01-05 00:12:06 +0000
commit84481dd3b42159428cd48ba67f811ed24deb6ed0 (patch)
tree0ddcca39ddd27976c9bd2e1820bccd87bf4d6547 /activerecord/test/locking_test.rb
parent8219db5ee25342ae53bfdcc511b00058121ebb42 (diff)
downloadrails-84481dd3b42159428cd48ba67f811ed24deb6ed0.tar.gz
rails-84481dd3b42159428cd48ba67f811ed24deb6ed0.tar.bz2
rails-84481dd3b42159428cd48ba67f811ed24deb6ed0.zip
Sybase adapter fixes. Closes #6926 [jsheets]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5839 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/locking_test.rb')
-rw-r--r--activerecord/test/locking_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/test/locking_test.rb b/activerecord/test/locking_test.rb
index f786d77027..471771bfbb 100644
--- a/activerecord/test/locking_test.rb
+++ b/activerecord/test/locking_test.rb
@@ -81,9 +81,9 @@ end
# blocks, so separate script called by Kernel#system is needed.
# (See exec vs. async_exec in the PostgreSQL adapter.)
-# TODO: The SQL Server adapter currently has no support for pessimistic locking
+# TODO: The SQL Server and Sybase adapters currently have no support for pessimistic locking
-unless current_adapter?(:SQLServerAdapter)
+unless current_adapter?(:SQLServerAdapter, :SybaseAdapter)
class PessimisticLockingTest < Test::Unit::TestCase
self.use_transactional_fixtures = false
fixtures :people, :readers