test/yargi/markable_test.rb in yargi-0.1.2 vs test/yargi/markable_test.rb in yargi-0.2.0
- old
+ new
@@ -1,86 +1,86 @@
require 'test/unit'
require 'yargi'
module Yargi
class MarkableTest < Test::Unit::TestCase
-
+
def setup
@object = Object.new
@object.extend Yargi::Markable
end
-
+
def test_mark_set_and_get
@object.set_mark("hello", "world")
assert_equal "world", @object.get_mark("hello")
@object.set_mark("hello", "world1")
assert_equal "world1", @object.get_mark("hello")
end
-
+
def test_has_mark
@object.set_mark("hello", "world")
assert @object.has_mark?("hello")
assert_equal false, @object.has_mark?("hello1")
end
-
+
def test_mark_set_and_get_though_hash_api
@object["hello"] = "world"
assert_equal "world", @object["hello"]
@object["hello"] = "world1"
assert_equal "world1", @object["hello"]
end
-
+
def test_friendly_methods
@object.set_mark(:first, 1)
assert_equal 1, @object.first
@object[:first] = 1
assert_equal 1, @object.first
@object.first = 2
assert_equal 2, @object.first
end
-
+
def test_it_is_not_intrusive
@object[:merge_marks] = 1
assert_nothing_raised do
@object.merge_marks "hello" => "marks"
end
assert_equal 1, @object[:merge_marks]
assert_equal "marks", @object["hello"]
end
-
+
def test_add_marks
@object.add_marks(:hello => 'world', :priority => 1.0)
assert_equal 'world', @object[:hello]
assert_equal 1.0, @object[:priority]
end
-
+
def test_add_marks_with_block
@object.add_marks do |v|
{:hello => 'world', :priority => 1.0, :debug => v.to_s}
end
assert_equal 'world', @object[:hello]
assert_equal 1.0, @object[:priority]
assert_not_nil @object[:debug]
end
-
+
def test_add_marks_with_both
@object.add_marks(:hello => 'world') do |v|
{:priority => 1.0, :debug => v.to_s}
end
assert_equal 'world', @object[:hello]
assert_equal 1.0, @object[:priority]
assert_not_nil @object[:debug]
end
-
+
def test_to_h
@object.set_mark(:me, "blambeau")
@object.add_marks(:hello => "world", :who => "yarvi", :nil => nil)
expected = {:me => "blambeau", :hello => "world", :who => "yarvi", :nil => nil}
assert_equal expected, @object.to_h(false)
expected = {:me => "blambeau", :hello => "world", :who => "yarvi"}
assert_equal expected, @object.to_h(true)
expected = {:me => "blambeau", :hello => "world", :who => "yarvi"}
assert_equal expected, @object.to_h()
end
-
+
end
end