Commit
7fd68d0efd3fd811907c541ac5e5cc00d46cf356
Fix require of test helper
|
1
| -require File.dirname(__FILE__) + '/../../../../test/test_helper' |
1
| +require_relative '../../../../test/test_helper' |
|
2
| |
2
| |
|
3
| class EmailArticlePluginMyprofileControllerTest < ActionController::TestCase |
3
| class EmailArticlePluginMyprofileControllerTest < ActionController::TestCase |
|
4
| |
4
| |
|
1
| -require File.dirname(__FILE__) + '/../../../test/test_helper' |
1
| +require_relative '../../../test/test_helper' |
|
1
| -require File.dirname(__FILE__) + '/../test_helper' |
1
| +require_relative '../test_helper' |
|
2
| |
2
| |
|
3
| class EmailArticlePluginTest < ActiveSupport::TestCase |
3
| class EmailArticlePluginTest < ActiveSupport::TestCase |
|
4
| |
4
| |
|
1
| -require File.dirname(__FILE__) + '/../test_helper' |
1
| +require_relative '../test_helper' |
|
2
| |
2
| |
|
3
| class EmailArticlePluginArticleMailerTest < ActiveSupport::TestCase |
3
| class EmailArticlePluginArticleMailerTest < ActiveSupport::TestCase |
|
4
| |
4
| |