diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2021-04-21 18:31:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-21 18:31:24 +0200 |
commit | 9cc283f0b48104f5761b1e4f96040c18428d25e9 (patch) | |
tree | 287de9971564772e0f4eddf6c19e8459265f56b5 /spec | |
parent | 83230234643bb53ba563e42d73fb91a0dcfbff64 (diff) |
Change the nouns "toot" and "status" to "post" (#16080)
Diffstat (limited to 'spec')
-rw-r--r-- | spec/mailers/notification_mailer_spec.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/mailers/notification_mailer_spec.rb b/spec/mailers/notification_mailer_spec.rb index 38916b54f..3ae106218 100644 --- a/spec/mailers/notification_mailer_spec.rb +++ b/spec/mailers/notification_mailer_spec.rb @@ -59,12 +59,12 @@ RSpec.describe NotificationMailer, type: :mailer do include_examples 'localized subject', 'notification_mailer.favourite.subject', name: 'bob' it "renders the headers" do - expect(mail.subject).to eq("bob favourited your status") + expect(mail.subject).to eq("bob favourited your post") expect(mail.to).to eq([receiver.email]) end it "renders the body" do - expect(mail.body.encoded).to match("Your status was favourited by bob") + expect(mail.body.encoded).to match("Your post was favourited by bob") expect(mail.body.encoded).to include 'The body of the own status' end end @@ -76,12 +76,12 @@ RSpec.describe NotificationMailer, type: :mailer do include_examples 'localized subject', 'notification_mailer.reblog.subject', name: 'bob' it "renders the headers" do - expect(mail.subject).to eq("bob boosted your status") + expect(mail.subject).to eq("bob boosted your post") expect(mail.to).to eq([receiver.email]) end it "renders the body" do - expect(mail.body.encoded).to match("Your status was boosted by bob") + expect(mail.body.encoded).to match("Your post was boosted by bob") expect(mail.body.encoded).to include 'The body of the own status' end end |