codetether-agent 4.7.0-a-002.2

A2A-native AI coding agent for the CodeTether ecosystem
Documentation
1
2
3
4
5
6
7
use super::super::lines as guard_lines;

#[test]
fn comments_and_blanks_do_not_count() {
    let text = "\n// comment\n/* block\nstill */\nconst x = 1;\n";
    assert_eq!(guard_lines::code_lines(text), 1);
}