We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63d4882 commit 702d7f8Copy full SHA for 702d7f8
spec/policies/comment_policy_spec.rb
@@ -58,15 +58,15 @@
58
end
59
60
61
- it 'dose not grants access to the author' do
+ it 'does not grants access to the author' do
62
expect(described_class).not_to permit(comment.user, comment)
63
64
65
66
context 'when content moderation is disabled' do
67
let(:reports_enabled) { false }
68
69
- it 'grants no access to all user types' do
+ it 'does not grant access to all user types' do
70
user_types.each do |user_type|
71
expect(described_class).not_to permit(build_stubbed(user_type), comment)
72
0 commit comments