Skip to content

Commit 89ba1fd

Browse files
author
e1himself
committed
Add a test that will reveal a tricky logic of lime
1 parent 03a2141 commit 89ba1fd

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/unit/test/limeTestTest.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
require_once(__DIR__.'/../../bootstrap/unit.php');
44

5-
$t = new lime_test(24);
5+
$t = new lime_test(26);
66

77
$t->comment('A. Equal numbers');
88
$t->is(1, 1);
@@ -37,3 +37,7 @@
3737
$t->is('', false);
3838
$t->is(false, null);
3939
$t->is(array(), null);
40+
41+
$t->comment('F. Values that should not be equal');
42+
$t->isnt(true, 'Hello');
43+
$t->isnt('Hello', true);

0 commit comments

Comments
 (0)