Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com>
  • Loading branch information
crynobone committed Dec 15, 2024
1 parent 3a7c8b3 commit c7eff07
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/Support/FluentDecoratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,12 @@ public function it_can_be_utilise_fluent_features()
$this->assertTrue(isset($fluent->laravel));
$this->assertSame(Application::VERSION, $fluent['laravel']);
$this->assertSame(Application::VERSION, $fluent->laravel);

unset($fluent['class']);

$this->assertFalse(isset($fluent['class']));
$this->assertFalse(isset($fluent->class));
$this->assertNull($fluent['class']);
$this->assertNull($fluent->class);
}
}

0 comments on commit c7eff07

Please sign in to comment.