File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
import { assertEquals } from 'https://deno.land/[email protected] /assert/assert_equals.ts' ;
2
- import isEmpty from './is_empty .ts' ;
2
+ import containsOnlyEmptyStrings from './contains_only_empty_strings .ts' ;
3
3
4
4
Deno . test (
5
5
'Calculate median value of number array.' ,
@@ -8,7 +8,7 @@ Deno.test(
8
8
name : 'Empty array []' ,
9
9
fn : ( ) => {
10
10
assertEquals (
11
- isEmpty ( [ ] ) ,
11
+ containsOnlyEmptyStrings ( [ ] ) ,
12
12
true ,
13
13
) ;
14
14
} ,
@@ -18,7 +18,7 @@ Deno.test(
18
18
name : 'Array with empty string' ,
19
19
fn : ( ) => {
20
20
assertEquals (
21
- isEmpty ( [ '' ] ) ,
21
+ containsOnlyEmptyStrings ( [ '' ] ) ,
22
22
true ,
23
23
) ;
24
24
} ,
@@ -28,7 +28,7 @@ Deno.test(
28
28
name : 'Array with multiple empty strings' ,
29
29
fn : ( ) => {
30
30
assertEquals (
31
- isEmpty ( [
31
+ containsOnlyEmptyStrings ( [
32
32
'' ,
33
33
''
34
34
] ) ,
@@ -41,7 +41,7 @@ Deno.test(
41
41
name : 'Array with string' ,
42
42
fn : ( ) => {
43
43
assertEquals (
44
- isEmpty ( [ ' ' ] ) ,
44
+ containsOnlyEmptyStrings ( [ ' ' ] ) ,
45
45
false ,
46
46
) ;
47
47
} ,
You can’t perform that action at this time.
0 commit comments