-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#140: Global export mode not affect for email testing #159
base: master
Are you sure you want to change the base?
Conversation
$this->mockedMail('test@mail.com', 'test_mail_with_global_export.html', 'Test Subject'), | ||
]); | ||
|
||
$this->assertFileExists($this->getFixturePath('test_mail_with_export.html')); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why you checking test_mail_with_export.html
file, but asserting content with the test_mail_with_global_export.html
?
@@ -0,0 +1,3 @@ | |||
<div> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you using this fixture to check that globa export mode works fine and create file if it not exists. If you'll commit this file to git - test will always be successful completed even if global export mode will be broken
#140