Skip to content

Commit 15385ca

Browse files
author
Anna
committed
more documentation
1 parent a09a19c commit 15385ca

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1-
# Rails 4 - By no means ready for production
2-
Current test status:
3-
3866 tests, 3412 passed, 85 failures, 369 errors, 29 skips, 10084 assertions
1+
# Rails 4
2+
One failing test. Until this is fixex when you use both :includes and :limit you will get fewer results than expected.
3+
```ruby
4+
FAIL
5+
Expected: 2
6+
Actual: 1
7+
/Users/acarey/code/source/rails/rails40/activerecord/test/cases/finder_test.rb:822:in `test_find_with_order_on_included_associations_with_construct_finder_sql_for_association_limiting_and_is_distinct'
8+
```
49

510

611
# ActiveRecord SQL Server Adapter. For SQL Server 2005 And Higher.
@@ -228,6 +233,8 @@ Many many people have contributed. If you do not see your name here and it shoul
228233
Up-to-date list of contributors: http://github.com/rails-sqlserver/activerecord-sqlserver-adapter/contributors
229234

230235
* metaskills (Ken Collins)
236+
* Annaswims (Annaswims)
237+
* Thirdshift (Garrett Hart)
231238
* h-lame (Murray Steele)
232239
* vegantech
233240
* cjheath (Clifford Heath)
@@ -242,6 +249,7 @@ Up-to-date list of contributors: http://github.com/rails-sqlserver/activerecord-
242249
* jeremydurham (Jeremy Durham)
243250

244251

252+
245253
## Donators
246254

247255
I am trying to save up for a Happy Hacking pro keyboard. Help me out via GitTip! https://www.gittip.com/metaskills/

test/cases/relations_test_sqlserver.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@ class RelationTest < ActiveRecord::TestCase
77
# Until that patch is made to rails we are preventing this test from running in this gem.
88
include SqlserverCoercedTest
99
fixtures :posts
10-
10+
1111
def test_coerced_merging_reorders_bind_params
12-
puts "RUNS"
1312
post = Post.first
1413
id_column = Post.columns_hash['id']
1514
title_column = Post.columns_hash['title']

0 commit comments

Comments
 (0)