Sha256: 3c2fd1bf3e43eb906eb7d0224da6d6cdf5f3929e2d3030a7c628c9e8889d9f0e

Contents?: true

Size: 1.3 KB

Versions: 1

Compression:

Stored size: 1.3 KB

Contents

require "test/unit"
require_relative '../lib/smart_init/main'

class TestKeywords
  extend SmartInit
  initialize_with :attribute_1, :attribute_2
  is_callable

  def call
    [attribute_1, attribute_2]
  end
end

class TestKeywordsDefaults
  extend SmartInit
  initialize_with :attribute_1, attribute_2: "default_value_2", attribute_3: "default_value_3"
  is_callable

  def call
    [attribute_1, attribute_2, attribute_3]
  end
end

class TestKeywordsIntegerDefaults
  extend SmartInit
  initialize_with :attribute_1, attribute_2: 2
  is_callable

  def call
    [attribute_1, attribute_2]
  end
end

class KeywordsApiTest < Test::Unit::TestCase
  def test_keywords
    assert_equal TestKeywords.call(attribute_1: "a", attribute_2: "b"), ["a", "b"]

    assert_raise ArgumentError do
      TestKeywords.new(
        attribute_1: "a"
      )
    end
  end

  def test_keywords_defaults
    assert_equal TestKeywordsDefaults.call(attribute_1: "a"), ["a", "default_value_2", "default_value_3"]
    assert_equal TestKeywordsDefaults.call(attribute_1: "a", attribute_2: "b"), ["a", "b", "default_value_3"]
  end

  def test_integer_defaults
    assert_equal TestKeywordsIntegerDefaults.call(attribute_1: 1), [1, 2]
  end

  private

  def test_object
    @_test_object ||= TestClass.new("attr_1_value", "attr_2_value")
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
smart_init-3.0.0 test/test_keywords_api.rb