| | 265 | def test_multi_search_find_options |
|---|
| | 266 | contents_from_ferret = Content.multi_search('title', [], {}, :order => 'id desc') |
|---|
| | 267 | assert_equal 2, contents_from_ferret.size |
|---|
| | 268 | assert contents_from_ferret.first.id > contents_from_ferret.last.id |
|---|
| | 269 | contents_from_ferret = Content.multi_search('title', [], {}, :order => 'id asc') |
|---|
| | 270 | assert contents_from_ferret.first.id < contents_from_ferret.last.id |
|---|
| | 271 | |
|---|
| | 272 | contents_from_ferret = Content.multi_search('title', [], {}, :limit => 1) |
|---|
| | 273 | assert_equal 1, contents_from_ferret.size |
|---|
| | 274 | end |
|---|
| | 275 | |
|---|