Skip to content

Commit

Permalink
modified finder test a tiny bit so that it passes on sqlserver
Browse files Browse the repository at this point in the history
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2657 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
Tobias Lütke committed Oct 16, 2005
1 parent 41a2a63 commit 13fccff
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions activerecord/test/finder_test.rb
Expand Up @@ -333,8 +333,8 @@ def test_select_value
end

def test_select_values
assert_equal ["1","2","3"], Company.connection.select_values("SELECT id FROM companies ORDER BY id LIMIT 3")
assert_equal ["37signals","Summit","Microsoft"], Company.connection.select_values("SELECT name FROM companies ORDER BY id LIMIT 3")
assert_equal ["1","2","3","4","5","6","7","8"], Company.connection.select_values("SELECT id FROM companies ORDER BY id")
assert_equal ["37signals","Summit","Microsoft", "Flamboyant Software", "Ex Nihilo", "RailsCore", "Leetsoft", "Jadedpixel"], Company.connection.select_values("SELECT name FROM companies ORDER BY id")
end

protected
Expand Down
9 changes: 6 additions & 3 deletions activerecord/test/fixtures/companies.yml
Expand Up @@ -35,13 +35,16 @@ another_client:
ruby_type: Client

rails_core:
id: 6
id: 6
name: RailsCore
type: DependentFirm

leetsoft:
id: 7
id: 7
name: Leetsoft
client_of: 6

jadedpixel:
id: 8
id: 8
name: Jadedpixel
client_of: 6

0 comments on commit 13fccff

Please sign in to comment.