posts: autotag video instead of webm/mp4.

Automatically add the `video` tag instead of the `webm` or `mp4` tags.
This commit is contained in:
evazion
2020-07-13 17:59:52 -05:00
parent 1e2e99a941
commit 5687c67fc3
2 changed files with 6 additions and 10 deletions

View File

@@ -1295,18 +1295,18 @@ class PostTest < ActiveSupport::TestCase
context "with a .webm file extension" do
setup do
FactoryBot.create(:tag_implication, antecedent_name: "webm", consequent_name: "animated")
FactoryBot.create(:tag_implication, antecedent_name: "video", consequent_name: "animated")
@post.file_ext = "webm"
@post.tag_string = ""
@post.save
end
should "have the appropriate file type tag added automatically" do
assert_match(/webm/, @post.tag_string)
assert_match(/video/, @post.tag_string)
end
should "apply implications after adding the file type tag" do
assert(@post.has_tag?("animated"), "expected 'webm' to imply 'animated'")
assert(@post.has_tag?("animated"), "expected 'video' to imply 'animated'")
end
end