aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-12-02 19:45:28 -0200
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-12-02 19:45:58 -0200
commit4a2650836680f51490e999c3c8441a2f9adff96e (patch)
tree42754b2de5acdeb35ce8e69fa7d5cad22fa7de53 /activerecord
parent152edcc16b3f4da967fb7765d4abff5bc93c3626 (diff)
downloadrails-4a2650836680f51490e999c3c8441a2f9adff96e.tar.gz
rails-4a2650836680f51490e999c3c8441a2f9adff96e.tar.bz2
rails-4a2650836680f51490e999c3c8441a2f9adff96e.zip
Make the tests break again
We need to fix this test
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/test/cases/finder_test.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/activerecord/test/cases/finder_test.rb b/activerecord/test/cases/finder_test.rb
index 735f804184..e76c1a113a 100644
--- a/activerecord/test/cases/finder_test.rb
+++ b/activerecord/test/cases/finder_test.rb
@@ -837,8 +837,6 @@ class FinderTest < ActiveRecord::TestCase
end
def test_with_limiting_with_custom_select
- skip 'broken test' if current_adapter?(:MysqlAdapter)
-
posts = Post.references(:authors).merge(
:includes => :author, :select => ' posts.*, authors.id as "author_id"',
:limit => 3, :order => 'posts.id'