spec: clipboard.readImage()
This commit is contained in:
parent
6f082b630d
commit
b5bc8c9811
1 changed files with 11 additions and 0 deletions
|
@ -1,7 +1,18 @@
|
|||
assert = require 'assert'
|
||||
clipboard = require 'clipboard'
|
||||
nativeImage = require 'native-image'
|
||||
path = require 'path'
|
||||
|
||||
describe 'clipboard module', ->
|
||||
fixtures = path.resolve __dirname, 'fixtures'
|
||||
|
||||
describe 'clipboard.readImage()', ->
|
||||
it 'returns NativeImage intance', ->
|
||||
p = path.join fixtures, 'assets', 'logo.png'
|
||||
i = nativeImage.createFromPath p
|
||||
clipboard.writeImage p
|
||||
assert.equal clipboard.readImage().toDataUrl(), i.toDataUrl()
|
||||
|
||||
describe 'clipboard.readText()', ->
|
||||
it 'returns unicode string correctly', ->
|
||||
text = '千江有水千江月,万里无云万里天'
|
||||
|
|
Loading…
Reference in a new issue