Sha256: b091d1cf5da99826b3f85812c91ffb68a04c77be06f2f460d92f8db0502ebadd

Contents?: true

Size: 579 Bytes

Versions: 104

Compression:

Stored size: 579 Bytes

Contents

require 'test_helper'

class MyModel
  include MLS::Model

end

class TestModel < ::Test::Unit::TestCase

  def test_instance_methods
    model = MyModel.new

    assert model.respond_to?(:property)
    assert model.respond_to?(:properties)
    assert model.respond_to?(:property_module)
    assert model.respond_to?(:create_reader_for)
    assert model.respond_to?(:create_writer_for)
    assert model.respond_to?(:model_name)
    assert model.respond_to?(:param_key)
    assert model.respond_to?(:root_element)
    assert model.respond_to?(:collection_root_element)
  end

end

Version data entries

104 entries across 104 versions & 1 rubygems

Version Path
mls-0.2.4 test/units/test_model.rb
mls-0.2.3 test/units/test_model.rb
mls-0.2.2 test/units/test_model.rb
mls-0.2.1 test/units/test_model.rb