...

/

The Fourth and Fifth Tests: Confirmation Message and Email

The Fourth and Fifth Tests: Confirmation Message and Email

Let’s implement the final two steps of the user registration scenario.

The fourth test

The fourth step is still pending, so we’ll need to define it.

Suppose we want to see a flash message that welcomes the user. In other words, if the user sees the word “Welcome” on the screen, the test should pass.

Press + to interact
Then('I should see a registration confirmation message') do
expect(page).to have_content("Welcome")
end

Add the step definition and run the test.

Note: You need to add the code above to the SPA.

Bud1  Ilg1Scomp @� @� @� @I.gitlg1ScompK�.gitmoDDblob�K�A.gitmodDblob�K�A.gitph1ScompappIlocblob;(������applg1Scomp*�appmoDDblob�K�AappmodDblob�K�Aappph1Scomp�binIlocblob�(������binlg1Scomp�binmoDDblob�K�AbinmodDblob�K�Abinph1Scomp0configIlocblob(������configlg1Scomp�
configmoDDblob�V�AconfigmodDblob�V�Aconfigph1Scomp�	config.ruIlocblob�(������dbIlocblob�(������dblg1ScompO�dbmoDDblob��\�AdbmodDblob��\�Adbph1Scomp�featuresIlocbloba(������featureslg1Scomp,�featuresmoDDblob
n�AfeaturesmodDblob
n�Afeaturesph1ScompPGemfileIlocblob;�������Gemfile.lockIlocblob��������libIlocblob�������liblg1Scomp	TlibmoDDblob�K�AlibmodDblob�K�Alibph1ScomplogIlocblob��������loglg1ScompT%logmoDDblob�jh�AlogmodDblob�jh�Alogph1Scomp`publicIlocblob��������publiclg1Scomp)publicmoDDblob�K�ApublicmodDblob�K�Apublicph1Scomp@RakefileIlocbloba�������	README.mdIlocblob;������scriptIlocblob�������scriptlg1ScompOscriptmoDDblobKL�AscriptmodDblobKL�Ascriptph1ScompstorageIlocblob������storagebwspblob�bplist00�


]ShowStatusBar[ShowPathbar[ShowToolbar[ShowTabView_ContainerShowSidebar\WindowBounds[ShowSidebar		_{{322, 268}, {1136, 674}}	%1=I`myz{|}~��storagelg1ScompstoragemoDDblob�K�AstoragemodDblob�K�Astorageph1ScompstoragevSrnlongtmpIlocblob�������tmpbwspblob�bplist00�


]ShowStatusBar[ShowPathbar[ShowToolbar[ShowTabView_ContainerShowSidebar\WindowBounds[ShowSidebar		_{{322, 268}, {1136, 674}}	%1=I`myz{|}~��tmplg1Scomp�njtmpmoDDblob�K�AtmpmodDblob�K�Atmpph1Scomp] tmpvSrnlongvendorIlocblob�������vendorlg1ScompvendormoDDblob�K�AvendormodDblob�K�Avendorph1Scomp EDSDB `�(0@� @� @�������loglg1ScompT%logmoDDblob�jh�AlogmodDblob�jh�Alogph1Scomp`publicIlocblob��������publiclg1Scomp)publicmoDDblob�K�ApublicmodDblob�K�Apublicph1Scomp@RakefileIlocbloba�������	README.mdIlocblob;������scriptIlocblob�������scriptlg1ScompOscriptmoDDblobKL�AscriptmodDblobKL�Ascriptph1ScompstorageIlocblob������storagebwspblob�bplist00�


]ShowStatusBar[ShowPathbar[ShowToolbar[ShowTabView_ContainerShowSidebar\WindowBounds[Show
The fourth test

It passes. But we haven’t added the “Welcome” message in the view. Why is that?

Devise does that for us. If the registration process is successful, it shows a flash message. That’s why the tests pass without adding any code.

Let’s move forward to the last step.

The final test

The last step concerns receiving the confirmation email.

The nice thing about Rails is that we can find a gem for almost anything. So, instead of trying to determine how to read emails, it’s much easier to use the email_spec gem, which provides some nice steps to do just that.

...