mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
clipboard: fix clear() on macos
This commit is contained in:
@@ -5,9 +5,9 @@ fn run_test(is_primary bool) {
|
||||
if !cb.is_available() {
|
||||
return
|
||||
}
|
||||
//assert cb.check_ownership() == false
|
||||
assert cb.check_ownership() == false
|
||||
assert cb.copy('I am a good boy!') == true
|
||||
//assert cb.check_ownership() == true
|
||||
// assert cb.check_ownership() == true TODO
|
||||
assert cb.paste() == 'I am a good boy!'
|
||||
cb.clear_all()
|
||||
assert cb.paste().len <= 0
|
||||
|
||||
Reference in New Issue
Block a user