Eliminating migrator tests (in this repo).
This commit is contained in:
parent
e8384e6a97
commit
9bb0bfc0b2
|
@ -1,10 +0,0 @@
|
|||
require 'helper'
|
||||
require 'jekyll/migrators/wordpress'
|
||||
require 'htmlentities'
|
||||
|
||||
class TestWordpressMigrator < Test::Unit::TestCase
|
||||
should "clean slashes from slugs" do
|
||||
test_title = "blogs part 1/2"
|
||||
assert_equal("blogs-part-1-2", Jekyll::WordPress.sluggify(test_title))
|
||||
end
|
||||
end
|
|
@ -1,9 +0,0 @@
|
|||
require 'helper'
|
||||
require 'jekyll/migrators/wordpressdotcom'
|
||||
|
||||
class TestWordpressDotComMigrator < Test::Unit::TestCase
|
||||
should "clean slashes from slugs" do
|
||||
test_title = "blogs part 1/2"
|
||||
assert_equal("blogs-part-1-2", Jekyll::WordpressDotCom.sluggify(test_title))
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue