File tree 5 files changed +2
-7
lines changed
5 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -314,6 +314,7 @@ public function classProvider(): array
314
314
315
315
/**
316
316
* @test
317
+ *
317
318
* @dataProvider classProvider
318
319
*
319
320
* @param $entityClass
Original file line number Diff line number Diff line change 42
42
});
43
43
44
44
it ('should fetch list of comments with an accurate representation of attributes ' , function () {
45
-
46
45
// successfull /v1/comments
47
46
Http::fake ([
48
47
'https://api.notion.com/v1/comments?block_id=abf6b0af-6eaa-45ca-9715-9fa147ef6b17* ' => Http::response (
114
113
});
115
114
116
115
it ('successfully creates a comment within a page ' , function () {
117
-
118
116
// successfull (post) /v1/comments
119
117
Http::fake ([
120
118
'https://api.notion.com/v1/comments* ' => Http::response (
Original file line number Diff line number Diff line change 29
29
* @see https://developers.notion.com/reference/post-database-query
30
30
*/
31
31
it ('returns a database endpoint instance ' , function () {
32
-
33
- // TODO update for new Filter behaviour
32
+ // TODO update for new Filter behaviour
34
33
$ endpoint = Notion::database ('897e5a76ae524b489fdfe71f5945d1af ' );
35
34
36
35
$ this ->assertInstanceOf (Database::class, $ endpoint );
136
135
});
137
136
138
137
it ('throws a notion exception for a bad request ' , function () {
139
-
140
138
// failing /v1/databases
141
139
Http::fake ([
142
140
'https://api.notion.com/v1/databases/8284f3ff77e24d4a939d19459e4d6bdc/query* ' => Http::response (
Original file line number Diff line number Diff line change @@ -107,7 +107,6 @@ public function it_throws_a_notion_exception_not_found()
107
107
/** @test */
108
108
public function it_assembles_properties_for_a_new_page ()
109
109
{
110
-
111
110
// test values
112
111
$ pageId = '0349b883a1c64539b435289ea62b6eab ' ;
113
112
$ pageTitle = 'I was updated from Tinkerwell ' ;
Original file line number Diff line number Diff line change 128
128
});
129
129
130
130
it ('creates a filter bag with with the AND operator and a nested OR condition ' , function () {
131
-
132
131
// Filter for all entries that are
133
132
// (KnownFor == Univac && (Name == Grace || Name == Jean))
134
133
You can’t perform that action at this time.
0 commit comments