Sha256: d8cd100cbfe7239e4e5e3d4ca1a143772cb1808eaa2ddf7ac06faa2fc7903602
Contents?: true
Size: 434 Bytes
Versions: 3
Compression:
Stored size: 434 Bytes
Contents
require '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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rtf-0.3.3 | test/style_test.rb |
rtf-0.3.2 | test/style_test.rb |
rtf-0.3.0 | test/style_test.rb |