mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
e3c17aa6d0
* Travis: run luacheck on unit tests
35 lines
1.1 KiB
Lua
35 lines
1.1 KiB
Lua
describe("Readerdictionary module", function()
|
|
local DocumentRegistry, ReaderUI, UIManager, Screen
|
|
|
|
setup(function()
|
|
require("commonrequire")
|
|
DocumentRegistry = require("document/documentregistry")
|
|
ReaderUI = require("apps/reader/readerui")
|
|
UIManager = require("ui/uimanager")
|
|
Screen = require("device").screen
|
|
end)
|
|
|
|
local readerui, rolling, dictionary
|
|
setup(function()
|
|
local sample_epub = "spec/front/unit/data/leaves.epub"
|
|
readerui = ReaderUI:new{
|
|
document = DocumentRegistry:openDocument(sample_epub),
|
|
}
|
|
rolling = readerui.rolling
|
|
dictionary = readerui.dictionary
|
|
end)
|
|
it("should show quick lookup window", function()
|
|
local name = "screenshots/reader_dictionary.png"
|
|
UIManager:quit()
|
|
UIManager:show(readerui)
|
|
rolling:onGotoPage(100)
|
|
dictionary:onLookupWord("test")
|
|
UIManager:scheduleIn(1, function()
|
|
UIManager:close(dictionary.dict_window)
|
|
UIManager:close(readerui)
|
|
end)
|
|
UIManager:run()
|
|
Screen:shot(name)
|
|
end)
|
|
end)
|