@@ -29,19 +29,19 @@ public function it_excludes_all_multiple_occurrences()
2929 }
3030
3131 /** @test */
32- public function it_works_with_null_value ()
32+ public function it_can_exclude_null_value ()
3333 {
3434 $ this ->assertEquals (['foo ' , 'bar ' , 'baz ' ], array_except_value (['foo ' , 'bar ' , 'baz ' , null ], null ));
3535 }
3636
3737 /** @test */
38- public function it_works_with_boolean_true_value ()
38+ public function it_can_exclude_boolean_true_value ()
3939 {
4040 $ this ->assertEquals (['foo ' , 'bar ' , 'baz ' ], array_except_value (['foo ' , 'bar ' , 'baz ' , true , true ], true ));
4141 }
4242
4343 /** @test */
44- public function it_works_with_boolean_false_value ()
44+ public function it_can_exclude_boolean_false_value ()
4545 {
4646 $ this ->assertEquals (
4747 ['foo ' , 'bar ' , 'baz ' , 5 => null ],
@@ -50,7 +50,7 @@ public function it_works_with_boolean_false_value()
5050 }
5151
5252 /** @test */
53- public function it_works_with_integer_values ()
53+ public function it_can_exclude_integer_value ()
5454 {
5555 $ this ->assertEquals (
5656 [0 => 23 , 2 => 14 , 3 => 11 ],
@@ -59,7 +59,7 @@ public function it_works_with_integer_values()
5959 }
6060
6161 /** @test */
62- public function it_works_with_float_values ()
62+ public function it_can_exclude_float_value ()
6363 {
6464 $ this ->assertEquals (
6565 [0 => 23.3 , 1 => 17.2 , 3 => 11.1 ],
@@ -68,7 +68,7 @@ public function it_works_with_float_values()
6868 }
6969
7070 /** @test */
71- public function it_works_with_string_values ()
71+ public function it_can_exclude_string_value ()
7272 {
7373 $ this ->assertEquals (['foo ' , 'bar ' ], array_except_value (['foo ' , 'bar ' , 'baz ' ], 'baz ' ));
7474 }
0 commit comments