Skip to content

Commit 6954b6a

Browse files
committed
Test
1 parent a628d16 commit 6954b6a

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

tests/Views/Traits/Configuration/ColumnConfigurationTest.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,16 @@ public function can_make_column_unclickable(): void
9696

9797
$this->assertFalse($column->isClickable());
9898
}
99+
100+
/** @test */
101+
public function can_deselect_column(): void
102+
{
103+
$column = Column::make('Name');
104+
105+
$this->assertTrue($column->isSelected());
106+
107+
$column->deselected();
108+
109+
$this->assertFalse($column->isSelected());
110+
}
99111
}

0 commit comments

Comments
 (0)