File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
tests/Integration/Eloquent Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 2
2
All notable changes to this project will be documented in this file. This project adheres to
3
3
[ Semantic Versioning] ( http://semver.org/ ) and [ this changelog format] ( http://keepachangelog.com/ ) .
4
4
5
+ ## [ 0.10.3] - 2017-09-02
6
+
7
+ ### Fixed
8
+ -[ #96 ] Fixed creation of qualified sorting parameters in the Eloquent adapter.
9
+
5
10
## [ 0.10.2] - 2017-08-25
6
11
7
12
### Added
Original file line number Diff line number Diff line change @@ -13,6 +13,13 @@ class PostsTest extends TestCase
13
13
*/
14
14
protected $ resourceType = 'posts ' ;
15
15
16
+ public function testSearch ()
17
+ {
18
+ factory (Post::class, 3 )->create ();
19
+
20
+ $ this ->doSearch (['sort ' => '-created-at ' ])->assertSearchResponse ();
21
+ }
22
+
16
23
/**
17
24
* Test that we can search posts for specific ids
18
25
*/
You can’t perform that action at this time.
0 commit comments