Sha256: 6c38d75a27190d88df68f9ecd0a755ccb0bf4c9cbae509b609cb974eb439c5ea

Contents?: true

Size: 605 Bytes

Versions: 6

Compression:

Stored size: 605 Bytes

Contents

require File.expand_path(File.dirname(__FILE__) + "/../../test_helper")

describe ::Inch::CodeObject::Converter do
  class MockObject
    def docstring
      "Foo::Bar"
    end

    def parameters
      []
    end

    def public?
      false
    end

    def private?
      true
    end
  end

  let(:object) { MockObject.new }
  it "should parse all objects" do
    attributes = ::Inch::CodeObject::Converter.to_hash(object)
    assert_equal object.docstring, attributes[:docstring]
    assert_equal object.public?, attributes[:public?]
    assert_equal object.private?, attributes[:private?]
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
inch-0.5.0.rc5 test/unit/code_object/converter_test.rb
inch-0.5.0.rc4 test/unit/code_object/converter_test.rb
inch-0.4.10 test/unit/code_object/converter_test.rb
inch-0.4.9 test/unit/code_object/converter_test.rb
inch-0.4.8 test/unit/code_object/converter_test.rb
inch-0.4.7 test/unit/code_object/converter_test.rb