Reverted deleted test and modified ensure subdirs are ignored.
This commit is contained in:
parent
d0ac4915cb
commit
f29884593b
|
@ -76,6 +76,19 @@ class TestPost < Test::Unit::TestCase
|
||||||
assert_equal "/2008/09/09/foo-bar", @post.id
|
assert_equal "/2008/09/09/foo-bar", @post.id
|
||||||
end
|
end
|
||||||
|
|
||||||
|
should "ignore subfolders" do
|
||||||
|
post = Post.allocate
|
||||||
|
post.site = @site
|
||||||
|
post.process("cat1/2008-09-09-foo-bar.textile")
|
||||||
|
assert_equal 0, post.categories.size
|
||||||
|
|
||||||
|
post = Post.allocate
|
||||||
|
post.site = @site
|
||||||
|
post.process("cat2/CAT3/2008-09-09-foo-bar.textile")
|
||||||
|
assert_equal 0, post.categories.size
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
should "create url based on date and title" do
|
should "create url based on date and title" do
|
||||||
@post.categories = []
|
@post.categories = []
|
||||||
@post.process(@fake_file)
|
@post.process(@fake_file)
|
||||||
|
|
Loading…
Reference in New Issue