Sha256: c92e99f998c40046d34c8b86bd888012c59918769bb282a5f2f4928e0558d79f

Contents?: true

Size: 1.42 KB

Versions: 5

Compression:

Stored size: 1.42 KB

Contents

class TestResourceBase < TestYaoResource
  def setup
    stub(Yao::Resources::Base).get { Yao::Resources::Base.new({"id" => "foor", "name" => "bar"}) }
  end

  def test_friendly_attributes
    base = Yao::Resources::Base.new({"id" => "foor"})
    base.class.friendly_attributes(:name)
    assert_equal("bar", base.name)

    base = Yao::Resources::Base.new({"name" => "bar"})
    base.class.friendly_attributes(:name)
    assert_equal("bar", base.name)
  end

  def test_map_attribute_to_resource
    base = Yao::Resources::Base.new("string" => "hoge")
    base.class.map_attribute_to_resource string: String
    assert_equal("hoge", base.string)

    base = Yao::Resources::Base.new({"empty" => ""})
    base.class.map_attribute_to_resource empty: NilClass
    assert_equal(nil, base.empty)
  end

  def test_update
    stub(Yao::Resources::Base).update('foo', {name: 'BAR'}) { Yao::Resources::Base.new('id' => 'foo', 'name' => 'BAR')}
    base = Yao::Resources::Base.new({'id' => 'foo', 'name' => 'bar'})
    got = base.update(name: 'BAR')
    assert_equal(got.name, 'BAR')
  end

  def test_destroy
    stub(Yao::Resources::Base).destroy('foo') { nil }
    base = Yao::Resources::Base.new({'id' => 'foo'})
    got = base.destroy
    assert_equal(got, nil)
  end

  def test_delete
    stub(Yao::Resources::Base).destroy('foo') { nil }
    base = Yao::Resources::Base.new({'id' => 'foo'})
    got = base.delete
    assert_equal(got, nil)
  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
yao-0.20.0 test/yao/resources/test_base.rb
yao-0.19.0 test/yao/resources/test_base.rb
yao-0.18.0 test/yao/resources/test_base.rb
yao-0.17.0 test/yao/resources/test_base.rb
yao-0.16.0 test/yao/resources/test_base.rb