0

私のテストでは、Rpec、私はこれを持っています

   before { @user = create(:user) }
   let(:mail) { SignUpMailer.message(@user) }

次に、次のエラーが表示されます。

 Failure/Error: @mail = SignUpMailer.message(@user) }
     ArgumentError:
       wrong number of arguments (0 for 1)

私も試しました:

before { @user = create(:user)
         @mail = SignUpMailer.message(@user) }

しかし、それでも上記のエラーが表示されます。何かご意見は?

編集: メーラーコード

class SignUpMailer < ActionMailer::Base
  default from: "Assign It App <support@assignitapp.com>"

      # Subject can be set in your I18n file at config/locales/en.yml
      # with the following lookup:
      #
      #   en.sign_up_mailer.message.subject
      #
      def message(user)
        @sign_in_url = sign_in_url
        @user_name = user.name
        mail subject: "Welcome to Assign It App"
        mail to: user.email
      end
    end

別の回避策の試み:

before { @user = create(:user) }
let(:mail) { SignUpMailer.message([@user]) }

私に与えるもの

 Failure/Error: let(:mail) { SignUpMailer.message([@user]) }
     NoMethodError:
       undefined method `name' for #<Array:0xa0c9860>

したがって、メーラーは引数を受け入れます。

4

0 に答える 0