posts: add "general" rating; rename "safe" rating to "sensitive".

* Add "general" rating.
* Rename "safe" rating to "sensitive".
* Change safe mode to include both rating:s and rating:g.
* Treat rating:safe as a synonym for rating:sensitive.
* Link "howto:rate" in the post edit form.
This commit is contained in:
evazion
2022-05-22 12:08:46 -05:00
parent d346adabc9
commit 81bd86d202
11 changed files with 62 additions and 25 deletions

View File

@@ -733,8 +733,35 @@ class PostTest < ActiveSupport::TestCase
context "that is valid" do
should "update the rating" do
@post.update(tag_string: "aaa rating:e")
@post.reload
assert_equal("e", @post.rating)
assert_equal("e", @post.reload.rating)
@post.update(tag_string: "aaa rating:q")
assert_equal("q", @post.reload.rating)
@post.update(tag_string: "aaa rating:s")
assert_equal("s", @post.reload.rating)
@post.update(tag_string: "aaa rating:g")
assert_equal("g", @post.reload.rating)
end
should "update the rating for a long name" do
@post.update(tag_string: "aaa rating:explicit")
assert_equal("e", @post.reload.rating)
@post.update(tag_string: "aaa rating:questionable")
assert_equal("q", @post.reload.rating)
@post.update(tag_string: "aaa rating:sensitive")
assert_equal("s", @post.reload.rating)
@post.update(tag_string: "aaa rating:general")
assert_equal("g", @post.reload.rating)
end
should "update the rating for rating:safe" do
@post.update(tag_string: "aaa rating:safe")
assert_equal("s", @post.reload.rating)
end
end
@@ -1623,8 +1650,8 @@ class PostTest < ActiveSupport::TestCase
end
end
should "allow values s, q, e" do
["s", "q", "e"].each do |rating|
should "allow values g, s, q, e" do
["g", "s", "q", "e"].each do |rating|
subject.rating = rating
assert(subject.valid?)
end