Skip to content

Commit 3d9b31a

Browse files
WIP: test changing Carbon::setTestNow
1 parent e7ceaff commit 3d9b31a

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

tests/BackupTablesTest.php

+12-5
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ public function test_generate_single_table_backup()
4141
{
4242
dump([3 => __FUNCTION__]);
4343

44-
Carbon::setTestNow(now());
44+
$dateTime = Carbon::parse("2024-01-01 12:12:08");
45+
Carbon::setTestNow($dateTime);
4546

4647
$tableName = 'fathers';
4748
BackupTables::generateBackup($tableName);
@@ -105,7 +106,8 @@ public function test_generate_single_table_backup_then_another_table_backup_late
105106
{
106107
dump([5 => __FUNCTION__]);
107108

108-
Carbon::setTestNow(now());
109+
$dateTime = Carbon::parse("2024-01-01 12:12:08");
110+
Carbon::setTestNow($dateTime);
109111

110112
$fatherTable = 'fathers';
111113
$sonTable = 'sons';
@@ -156,7 +158,9 @@ public function test_generate_multiple_table_backup()
156158
{
157159
dump([6=> __FUNCTION__]);
158160

159-
Carbon::setTestNow(now());
161+
$dateTime = Carbon::parse("2024-01-01 12:12:08");
162+
Carbon::setTestNow($dateTime);
163+
160164
$tableName = 'fathers';
161165
$tableName2 = 'sons';
162166

@@ -197,7 +201,9 @@ public function test_generate_single_table_backup_with_with_custom_format()
197201
{
198202
dump([7 => __FUNCTION__]);
199203

200-
Carbon::setTestNow(now());
204+
$dateTime = Carbon::parse("2024-01-01 12:12:08");
205+
Carbon::setTestNow($dateTime);
206+
201207
$tableName = 'fathers';
202208
$customFormat = 'Y_d_m_H_i';
203209

@@ -214,7 +220,8 @@ public function test_generate_single_table_backup_with_with_custom_format()
214220
//{
215221
//dump([8 => __FUNCTION__]);
216222

217-
// Carbon::setTestNow();
223+
//$dateTime = Carbon::parse("2024-01-01 12:12:08");
224+
//Carbon::setTestNow($dateTime);
218225
// $tableName = Father::class;
219226
// $tableName2 = Son::class;
220227
//

0 commit comments

Comments
 (0)