Sha256: 00848f6bc1bc0862ff880eb1e619398391c96b0e4cb3e531632660acb6d87eab
Contents?: true
Size: 460 Bytes
Versions: 9
Compression:
Stored size: 460 Bytes
Contents
require File.dirname(__FILE__) + '/test_helper' # 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
Version data entries
9 entries across 9 versions & 3 rubygems