Unverified Commit ff9591ae authored by Steffen van Bergerem's avatar Steffen van Bergerem Committed by Benjamin Neff
Browse files

Use gender-neutral forms in comments and specs

closes #7544
parent f295da16
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -144,7 +144,7 @@ app.views.AspectMembership = app.views.Base.extend({

    this.render();
    // we just removed the last aspect, inform the user with a flash message
    // that he is no longer sharing with that person
    // that they are no longer sharing with that person
    if (this.$el.find("li.selected").length === 0) {
      var msg = Diaspora.I18n.t("aspect_dropdown.stopped_sharing_with", { "name": this._name() });
      stopSharing = true;
+3 −3
Original line number Diff line number Diff line
@@ -81,7 +81,7 @@ describe CommentsController, :type => :controller do
        sign_in bob, scope: :user
      end

      it 'lets the user delete his comment' do
      it "lets the user delete their comment" do
        comment = bob.comment!(@message, "hey")

        expect(bob).to receive(:retract).with(comment)
@@ -99,7 +99,7 @@ describe CommentsController, :type => :controller do
    end

    context "another user's post" do
      it 'let the user delete his comment' do
      it "lets the user delete their comment" do
        comment = alice.comment!(@message, "hey")

        expect(alice).to receive(:retract).with(comment)
@@ -107,7 +107,7 @@ describe CommentsController, :type => :controller do
        expect(response.status).to eq(204)
      end

      it 'does not let the user destroy comments he does not own' do
      it "does not let the user destroy comments they do not own" do
        comment1 = bob.comment!(@message, "hey")
        comment2 = eve.comment!(@message, "hey")

+1 −1
Original line number Diff line number Diff line
@@ -173,7 +173,7 @@ describe PhotosController, :type => :controller do
  end

  describe '#destroy' do
    it 'let a user delete his message' do
    it "lets a user delete their message" do
      delete :destroy, params: {id: @alices_photo.id}
      expect(Photo.find_by_id(@alices_photo.id)).to be_nil
    end
+5 −5
Original line number Diff line number Diff line
@@ -144,7 +144,7 @@ describe UsersController, :type => :controller do
    end

    describe 'language' do
      it 'allow the user to change his language' do
      it "allows the user to change their language" do
        old_language = 'en'
        @user.language = old_language
        @user.save
@@ -155,7 +155,7 @@ describe UsersController, :type => :controller do
    end

    describe "color_theme" do
      it "allow the user to change his color theme" do
      it "allows the user to change their color theme" do
        old_color_theme = "original"
        @user.color_theme = old_color_theme
        @user.save
@@ -166,14 +166,14 @@ describe UsersController, :type => :controller do
    end

    describe 'email' do
      it 'disallow the user to change his new (unconfirmed) mail when it is the same as the old' do
      it "disallows the user to change their new (unconfirmed) mail when it is the same as the old" do
        @user.email = "my@newemail.com"
        put :update, params: {id: @user.id, user: {email: "my@newemail.com"}}
        @user.reload
        expect(@user.unconfirmed_email).to eql(nil)
      end

      it 'allow the user to change his (unconfirmed) email' do
      it "allows the user to change their (unconfirmed) email" do
        put :update, params: {id: @user.id, user: {email: "my@newemail.com"}}
        @user.reload
        expect(@user.unconfirmed_email).to eql("my@newemail.com")
@@ -191,7 +191,7 @@ describe UsersController, :type => :controller do
        expect(request.flash[:notice]).to be_blank
      end

      it 'allow the user to change his (unconfirmed) email to blank (= abort confirmation)' do
      it "allow the user to change their (unconfirmed) email to blank (= abort confirmation)" do
        put :update, params: {id: @user.id, user: {email: ""}}
        @user.reload
        expect(@user.unconfirmed_email).to eql(nil)
+1 −1
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@ shared_examples_for "it deals correctly with a relayable" do
    end

    # Checks when a remote pod B wants to send us a relayable with authorship from a remote pod C user
    # without having correct signature from him.
    # without having a correct signature for them.
    it "rejects a downstream entity with a malformed author signature" do
      expect(Workers::ReceiveLocal).not_to receive(:perform_async)
      allow(remote_user_on_pod_c).to receive(:encryption_key).and_return(OpenSSL::PKey::RSA.new(1024))
Loading