Sync parser tests with examples on mediawiki

I added on MW an example of comparison with empty array, which we should
keep inside the dedicated test as well.

Change-Id: Ifa4bca85c8978ef24ed5bb26787730bb4521261f
This commit is contained in:
Daimona Eaytoy 2018-04-26 18:47:51 +02:00
parent 2e116e5c6d
commit 9eea111d9f

View file

@ -16,5 +16,7 @@
(['1','2','3'] == [1,2,3]) &
!(['1','2','3'] === [1,2,3]) &
([1,1,''] == [true, true, false]) &
([] == false) &
([] == null) &
!(['1'] == '1')