Sha256: 3cc8c784a5fb645956d891788261095eaf71b14c75db1f5b520f043340c54246

Contents?: true

Size: 893 Bytes

Versions: 7

Compression:

Stored size: 893 Bytes

Contents

require 'test/unit'
require 'axlsx.rb'

class TestPieSeries < Test::Unit::TestCase

  def setup
    p = Axlsx::Package.new
    @ws = p.workbook.add_worksheet :name=>"hmmm"
    chart = @ws.drawing.add_chart Axlsx::Bar3DChart, :title => "fishery"
    @series = chart.add_series :data=>[0,1,2], :labels=>["zero", "one", "two"], :title=>"bob"
  end
  
  def test_initialize
    assert_equal(@series.title, "bob", "series title has been applied")
    assert_equal(@series.data, [0,1,2], "data option applied")
    assert_equal(@series.labels, ["zero", "one","two"], "labels option applied")    
    assert_equal(@series.shape, :box, "series shape has been applied")   
  end

  def test_shape
    assert_raise(ArgumentError, "require valid shape") { @series.shape = :teardropt }
    assert_nothing_raised("allow valid shape") { @series.shape = :cone }
    assert(@series.shape == :cone)
  end

end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
axlsx-1.0.7 test/drawing/tc_pie_series.rb~
axlsx-1.0.6 test/drawing/tc_pie_series.rb~
axlsx-1.0.5 test/drawing/tc_pie_series.rb~
axlsx-1.0.4 test/drawing/tc_pie_series.rb~
axlsx-1.0.3 test/drawing/tc_pie_series.rb~
axlsx-1.0.1 test/drawing/tc_pie_series.rb~
axlsx-1.0.0 test/drawing/tc_pie_series.rb~