(t *testing.T)
| 456 | } |
| 457 | |
| 458 | func TestValue_Set_Nested(t *testing.T) { |
| 459 | // Test setting a value via a nested dasel value (exercises the isDaselValue branch in Set) |
| 460 | inner := model.NewStringValue("original") |
| 461 | outer := model.NewNestedValue(inner) |
| 462 | if err := outer.Set(model.NewStringValue("updated")); err != nil { |
| 463 | t.Fatal(err) |
| 464 | } |
| 465 | } |
| 466 | |
| 467 | func TestValue_Kind(t *testing.T) { |
| 468 | // Exercise the Kind method |
nothing calls this directly
no test coverage detected