ensure number category is NOT included as fixnum

This commit is contained in:
maul.esel 2013-05-11 18:03:51 +02:00
parent 17cdd59206
commit eda11aa534
1 changed files with 1 additions and 0 deletions

View File

@ -426,6 +426,7 @@ class TestPost < Test::Unit::TestCase
should "recognize number category in yaml" do
post = setup_post("2013-05-10-number-category.textile")
assert post.categories.include?('2013')
assert !post.categories.include?(2013)
end
should "recognize tag in yaml" do