Flowdock
method

test_name

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: TestOLEVARIABLE
test_name() public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File ext/win32ole/tests/testOLEVARIABLE.rb, line 10
  def test_name
    classes = WIN32OLE_TYPE.ole_classes(MS_EXCEL_TYPELIB)
    chart = classes.find {|c| c.name == 'XlChartType'}
    var_names = chart.variables.collect {|m| m.name}
    assert(var_names.size > 0)
    assert(var_names.include?('xl3DColumn'))
  end
Register or log in to add new notes.