1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/tests/string_interpolation_shared_test.v

67 lines
1.0 KiB
V

struct Abc {
mut:
x f64
}
struct Qwe {
s shared Abc
}
fn test_shared_struct_interpolation() {
shared s := Abc{
x: 6.25
}
astr := rlock s {
'${s}'
}
assert astr.starts_with('Abc{')
assert astr.contains('x: 6.25')
assert astr.ends_with('}')
}
fn test_shared_array_interpolation() {
shared a := [0.25, -6.125, 12.5]
astr := rlock a {
'${a}'
}
assert astr == '[0.25, -6.125, 12.5]'
}
fn test_shared_map_interpolation() {
shared m := {
'xy': 12.125
'qwe': -6.0625
'foo': 0.5
}
mstr := rlock m {
'${m}'
}
assert mstr == "{'xy': 12.125, 'qwe': -6.0625, 'foo': 0.5}"
}
fn test_print_shared() {
shared s := Abc{
x: 6.25
}
shared a := [0.25, -6.125, 12.5]
shared m := {
'xy': 12.125
'qwe': -6.0625
'foo': 0.5
}
x, y := rlock a, s {
println(s)
println(a)
s.str(), a.str()
}
z := rlock m {
println(m)
m.str()
}
assert x.starts_with('Abc{')
assert x.contains('x: 6.25')
assert x.ends_with('}')
assert y == '[0.25, -6.125, 12.5]'
assert z == "{'xy': 12.125, 'qwe': -6.0625, 'foo': 0.5}"
}