mirror of
https://github.com/vlang/v.git
synced 2025-09-15 07:22:27 +03:00
json: move _test.v
files to vlib/json/tests/
(#22731)
This commit is contained in:
parent
9de84888b3
commit
8ebbacecd6
37 changed files with 1 additions and 1 deletions
|
@ -1,28 +0,0 @@
|
|||
module main
|
||||
|
||||
import json
|
||||
|
||||
struct Json2 {
|
||||
inner []f64
|
||||
}
|
||||
|
||||
struct Json {
|
||||
Json2
|
||||
test f64
|
||||
}
|
||||
|
||||
fn test_main() {
|
||||
str := '{
|
||||
"inner": [1, 2, 3, 4, 5],
|
||||
"test": 1.0
|
||||
}'
|
||||
data := json.decode(Json, str) or {
|
||||
eprintln('Failed to decode json, error: ${err}')
|
||||
return
|
||||
}
|
||||
println(data)
|
||||
assert data.inner.len == 5
|
||||
assert data.inner[0] == 1.0
|
||||
assert data.inner[4] == 5.0
|
||||
assert data.test == 1.0
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue