mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-18 23:47:48 +02:00
7 lines
139 B
Plaintext
7 lines
139 B
Plaintext
|
LET url = @static + '/simple.html'
|
||
|
LET page = DOCUMENT(url)
|
||
|
|
||
|
LET actual = XPATH(page, "//meta/@charset")
|
||
|
|
||
|
RETURN EXPECT(["UTF-8"], actual)
|