aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/associations
diff options
context:
space:
mode:
authorKen Collins <ken@metaskills.net>2008-11-19 11:09:44 -0500
committerMichael Koziarski <michael@koziarski.com>2008-11-19 18:00:56 +0100
commit8e4624be9e55cd0865b307be70a1e6287ec033ca (patch)
tree474283fdde50c0ef8a3c5ced93668753c8a2da13 /activerecord/test/cases/associations
parentaeae79dc450598d2e12d5b38472d6dd2b1a4abd7 (diff)
downloadrails-8e4624be9e55cd0865b307be70a1e6287ec033ca.tar.gz
rails-8e4624be9e55cd0865b307be70a1e6287ec033ca.tar.bz2
rails-8e4624be9e55cd0865b307be70a1e6287ec033ca.zip
Remove SQL Server cases from tests for latest adapter work to pass rails expected behavior.
Signed-off-by: Michael Koziarski <michael@koziarski.com>
Diffstat (limited to 'activerecord/test/cases/associations')
-rw-r--r--activerecord/test/cases/associations/eager_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/associations/eager_test.rb b/activerecord/test/cases/associations/eager_test.rb
index 5f43975d5a..a4f1f65f9a 100644
--- a/activerecord/test/cases/associations/eager_test.rb
+++ b/activerecord/test/cases/associations/eager_test.rb
@@ -667,7 +667,7 @@ class EagerAssociationTest < ActiveRecord::TestCase
end
def test_count_with_include
- if current_adapter?(:SQLServerAdapter, :SybaseAdapter)
+ if current_adapter?(:SybaseAdapter)
assert_equal 3, authors(:david).posts_with_comments.count(:conditions => "len(comments.body) > 15")
elsif current_adapter?(:OpenBaseAdapter)
assert_equal 3, authors(:david).posts_with_comments.count(:conditions => "length(FETCHBLOB(comments.body)) > 15")