lines:[]string{"this is one line","this is a second line"},
want:"this is one line",
},{
name:"multiple line with url (short)",
short:true,
url:"https://example.com",
experimental:false,
lines:[]string{"this is one line","this is a second line"},
want:"this is one line",
},{
name:"multiple line with experimental (short)",
short:true,
url:"",
experimental:true,
lines:[]string{"this is one line","this is a second line"},
want:"this is one line",
},{
name:"one line (long)",
short:false,
url:"",
experimental:false,
lines:[]string{"this is one line"},
want:"this is one line",
},{
name:"one line with url (long)",
short:false,
url:"https://example.com",
experimental:false,
lines:[]string{"this is one line"},
want:"this is one line\n\n For more information visit https://example.com",
},{
name:"one line with experimental (long)",
short:false,
url:"",
experimental:true,
lines:[]string{"this is one line"},
want:"this is one line\n\n NOTE: This is an experimental command, use `KYVERNO_EXPERIMENTAL=true` to enable it.",
},{
name:"multiple line (long)",
short:false,
url:"",
experimental:false,
lines:[]string{"this is one line","this is a second line"},
want:"this is one line\n this is a second line",
},{
name:"multiple line with url (long)",
short:false,
url:"https://example.com",
experimental:false,
lines:[]string{"this is one line","this is a second line"},
want:"this is one line\n this is a second line\n\n For more information visit https://example.com",
},{
name:"multiple line with experimental (long)",
short:false,
url:"",
experimental:true,
lines:[]string{"this is one line","this is a second line"},
want:"this is one line\n this is a second line\n\n NOTE: This is an experimental command, use `KYVERNO_EXPERIMENTAL=true` to enable it.",
},{
name:"multiple line with url and experimental (long)",
short:false,
url:"https://example.com",
experimental:true,
lines:[]string{"this is one line","this is a second line"},
want:"this is one line\n this is a second line\n\n NOTE: This is an experimental command, use `KYVERNO_EXPERIMENTAL=true` to enable it.\n\n For more information visit https://example.com",