remove references to locks

This commit is contained in:
Lily
2021-10-24 15:16:48 -03:00
parent a9088d8a87
commit 647848b499
5 changed files with 3 additions and 11 deletions

View File

@@ -42,7 +42,6 @@ class AutocompleteTest < ApplicationSystemTestCase
should "work for static metatags" do
assert_metatag_autocomplete_equals(%w[any none], "child")
assert_metatag_autocomplete_equals(%w[any none], "parent")
assert_metatag_autocomplete_equals(%w[rating note status], "locked")
assert_metatag_autocomplete_equals(%w[safe questionable explicit], "rating")
assert_metatag_autocomplete_equals(%w[gif jpg mp4 png swf webm zip], "filetype")
assert_metatag_autocomplete_equals(%w[active any banned deleted flagged modqueue pending unmoderated], "status")

View File

@@ -174,10 +174,6 @@ class AutocompleteServiceTest < ActiveSupport::TestCase
assert_autocomplete_equals(["rating:questionable"], "rating:q", :tag_query)
assert_autocomplete_equals(["rating:explicit"], "rating:e", :tag_query)
assert_autocomplete_equals(["locked:rating"], "locked:r", :tag_query)
assert_autocomplete_equals(["locked:status"], "locked:s", :tag_query)
assert_autocomplete_equals(["locked:note"], "locked:n", :tag_query)
assert_autocomplete_equals(["embedded:true"], "embedded:t", :tag_query)
assert_autocomplete_equals(["embedded:false"], "embedded:f", :tag_query)

View File

@@ -414,8 +414,6 @@ class PostTest < ActiveSupport::TestCase
should allow_value("touhou child:1").for(:tag_string)
should allow_value("touhou source:foo").for(:tag_string)
should allow_value("touhou rating:z").for(:tag_string)
should allow_value("touhou locked:rating").for(:tag_string)
should allow_value("touhou -locked:rating").for(:tag_string)
# \u3000 = ideographic space, \u00A0 = no-break space
should allow_value("touhou\u3000foo").for(:tag_string)
@@ -676,7 +674,7 @@ class PostTest < ActiveSupport::TestCase
context "for a rating" do
context "that is valid" do
should "update the rating if the post is unlocked" do
should "update the rating" do
@post.update(tag_string: "aaa rating:e")
@post.reload
assert_equal("e", @post.rating)
@@ -1364,7 +1362,7 @@ class PostTest < ActiveSupport::TestCase
end
end
context "A rating unlocked post" do
context "A post" do
setup { @post = FactoryBot.create(:post) }
subject { @post }