Commit
d0c953ce5cb1cdd54c2e7958733f17816cde2c51
Exists in
staging
and in
19 other branches
angular_poc, api-homepage, api_visitor, caching-rails4, captcha_serpro_plugin, comment_paragraph_api, comments_api_reply, environment-api, export-comment-paragraph, fix_multitenancy, fix_profile_wall, fix_string_downcase_and_upcase, fix_upload_files_on_development_environment, json_cookie_serializer, login-captcha, master, new_security, new_video_plugin, production
rspec3: enable deprecated should syntax
| @@ -0,0 +1,11 @@ |
| @@ -0,0 +1,11 @@ |
| |
1
| +require 'rspec' |
| |
2
| + |
| |
3
| +# FIXME: should syntax is DEPRECATED |
| |
4
| +RSpec.configure do |config| |
| |
5
| + config.mock_with :rspec do |c| |
| |
6
| + c.syntax = [:should, :expect] |
| |
7
| + end |
| |
8
| + config.expect_with :rspec do |c| |
| |
9
| + c.syntax = [:should, :expect] |
| |
10
| + end |
| |
11
| +end |