mirror of
https://github.com/github/rails.git
synced 2026-01-27 07:17:58 -05:00
modified finder test a tiny bit so that it passes on sqlserver
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2657 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -333,8 +333,8 @@ class FinderTest < Test::Unit::TestCase
|
||||
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
|
||||
|
||||
9
activerecord/test/fixtures/companies.yml
vendored
9
activerecord/test/fixtures/companies.yml
vendored
@@ -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
|
||||
Reference in New Issue
Block a user