Sha256: 8b7e665085b1fc161ba9046447e2c384d98a3ef0855d43a70ac67d501cfff7e2

Contents?: true

Size: 1.52 KB

Versions: 6

Compression:

Stored size: 1.52 KB

Contents

require 'test_helper'

module Tins
  class AnnotateTest < Test::Unit::TestCase
    require 'tins/xt/annotate'

    class A
      annotate :foo

      annotate :bar

      foo 'test foo1'
      bar 'test bar1'
      def first
      end

      foo 'test foo2'
      bar 'test bar2'
      def second
      end

      bar 'test bar3'
      def third
      end

      foo
      def fourth
      end
    end

    def test_annotations_via_class
      assert_equal 'test foo1', A.foo_of(:first)
      assert_equal 'test bar1', A.bar_of(:first)
      assert_equal 'test foo2', A.foo_of(:second)
      assert_equal 'test bar2', A.bar_of(:second)
      assert_equal nil, A.foo_of(:third)
      assert_equal 'test bar3', A.bar_of(:third)
    end

    def test_annotations_via_instance
      a = A.new
      assert_equal 'test foo1', a.foo_of(:first)
      assert_equal 'test bar1', a.bar_of(:first)
      assert_equal 'test foo2', a.foo_of(:second)
      assert_equal 'test bar2', a.bar_of(:second)
      assert_equal nil, a.foo_of(:third)
      assert_equal 'test bar3', a.bar_of(:third)
    end

    def test_annotations_without_args
      assert_equal :annotated, A.foo_of(:fourth)
      a = A.new
      assert_equal :annotated, a.foo_of(:fourth)
    end

    def test_query_methods
      assert_equal(
        { :first=>"test foo1", :fourth=>:annotated, :second=>"test foo2" },
        A.foo_annotations
      )
      assert_equal(
        { :first=>"test foo1", :fourth=>:annotated, :second=>"test foo2" },
        A.new.foo_annotations
      )
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
tins-1.38.0 tests/annotate_test.rb
tins-1.37.1 tests/annotate_test.rb
tins-1.37.0 tests/annotate_test.rb
tins-1.36.1 tests/annotate_test.rb
tins-1.36.0 tests/annotate_test.rb
tins-1.35.0 tests/annotate_test.rb