From 6f13aded25f66137f426358815127fc0787a6688 Mon Sep 17 00:00:00 2001 From: vcaesar Date: Wed, 11 Oct 2017 20:15:11 +0800 Subject: [PATCH] Update test --- clipboard/example_test.go | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/clipboard/example_test.go b/clipboard/example_test.go index 527e819..089ae6b 100644 --- a/clipboard/example_test.go +++ b/clipboard/example_test.go @@ -1,22 +1,22 @@ package clipboard_test -import ( - "fmt" +// import ( +// "fmt" - "github.com/go-vgo/robotgo/clipboard" -) +// "github.com/go-vgo/robotgo/clipboard" +// ) -func Example() { - clipboard.WriteAll("日本語") - text, err := clipboard.ReadAll() - if err != nil { - fmt.Println(err) - } else { - if text != "" { - fmt.Println(text) +// func Example() { +// clipboard.WriteAll("日本語") +// text, err := clipboard.ReadAll() +// if err != nil { +// fmt.Println(err) +// } else { +// if text != "" { +// fmt.Println(text) - // Output: - // 日本語 - } - } -} +// // Output: +// // 日本語 +// } +// } +// }