Files
koreader/spec/unit/font_spec.lua

17 lines
463 B
Lua
Raw Normal View History

2015-09-08 20:10:17 -07:00
describe("Font module", function()
local Font
setup(function()
require("commonrequire")
Font = require("ui/font")
end)
2015-09-08 20:10:17 -07:00
it("should get face", function()
local f
2015-09-08 20:10:17 -07:00
f = Font:getFace('cfont', 18)
assert.are_not.equals(f.ftface, nil)
f = Font:getFace('tfont', 16)
assert.are_not.equals(f.ftface, nil)
f = Font:getFace('hfont', 12)
assert.are_not.equals(f.ftface, nil)
end)
end)