Sha256: a8b8e93b5d34d1c4adf4031b05df6d3b9affc1c53179e84aca9ab968d3bae202

Contents?: true

Size: 410 Bytes

Versions: 10

Compression:

Stored size: 410 Bytes

Contents

require "spec_helper"

describe OpenXml::Docx::Properties::Strikethrough do
  include ValuePropertyTestMacros

  it_should_use tag: :strike, name: "strikethrough"

  with_value(true) do
    it_should_work
    it_should_output "<w:strike w:val=\"true\"/>"
  end

  with_value(false) do
    it_should_work
    it_should_output ""
  end

  with_value(nil) do
    it_should_work
    it_should_output ""
  end

end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
openxml-docx-0.10.6 spec/properties/strikethrough_spec.rb
openxml-docx-0.10.5 spec/properties/strikethrough_spec.rb
openxml-docx-0.10.4 spec/properties/strikethrough_spec.rb
openxml-docx-0.10.3 spec/properties/strikethrough_spec.rb
openxml-docx-0.10.2 spec/properties/strikethrough_spec.rb
openxml-docx-0.10.1 spec/properties/strikethrough_spec.rb
openxml-docx-0.10.0 spec/properties/strikethrough_spec.rb
openxml-docx-0.9.0 spec/properties/strikethrough_spec.rb
openxml-docx-0.8.0 spec/properties/strikethrough_spec.rb
openxml-docx-0.8.0.beta1 spec/properties/strikethrough_spec.rb