mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
readline: put duplicated code in readline_default.c.v
This commit is contained in:
20
vlib/readline/readline_test.v
Normal file
20
vlib/readline/readline_test.v
Normal file
@@ -0,0 +1,20 @@
|
||||
import readline { Readline }
|
||||
|
||||
fn no_lines(s string) string {
|
||||
return s.replace('\n', ' ')
|
||||
}
|
||||
|
||||
fn test_struct_readline() {
|
||||
// mut rl := Readline{}
|
||||
// eprintln('rl: $rl')
|
||||
// line := rl.read_line('Please, enter your name: ') or { panic(err) }
|
||||
// eprintln('line: $line')
|
||||
mut methods := []string{}
|
||||
$for method in Readline.methods {
|
||||
// eprintln(' method: $method.name | ' + no_lines('$method'))
|
||||
methods << method.name
|
||||
}
|
||||
// eprintln('methods: $methods')
|
||||
assert 'read_line_utf8' in methods
|
||||
assert 'read_line' in methods
|
||||
}
|
||||
Reference in New Issue
Block a user