Repository URL to install this package:
|
Version:
0.5.0 ▾
|
require File.expand_path(File.dirname(__FILE__)+'/helper_tests')
# Information class unit test class.
class StyleTest < Test::Unit::TestCase
def test_basics
style = Style.new
assert(style.is_character_style? == false)
assert(style.is_document_style? == false)
assert(style.is_paragraph_style? == false)
assert(style.is_table_style? == false)
assert(style.prefix(nil, nil) == nil)
assert(style.suffix(nil, nil) == nil)
end
end