vibe-action 0.2.2

Command router — execute shell commands and LLM prompts via simple YAML actions.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use crate::app_test_modifier;

#[test]
fn test_resolve_string() {
    let output = app_test_modifier("resolve-string");
    assert!(output.status.success());
    let stdout = String::from_utf8_lossy(&output.stdout);
    assert!(!stdout.contains("~"), "Got: {}", stdout);
}

#[test]
fn test_resolve_list() {
    let output = app_test_modifier("resolve-list");
    assert!(output.status.success());
    let stdout = String::from_utf8_lossy(&output.stdout);
    assert!(!stdout.contains("~"), "Got: {}", stdout);
    assert!(!stdout.contains("./"), "Got: {}", stdout);
}