Commit
d0c953ce5cb1cdd54c2e7958733f17816cde2c51
Exists in
master
and in
20 other branches
add_member_task_reject_details, admin_visible_profile, community_notifications, fix_comments_pagination, fix_rails4_organization_ratings, fix_sign_up_form, follow_step_fix, forum_topic_creation, mirror_block_improvements, multi_env_on_remote_user, new_security, organization_ratings_improvements, profile_api_improvements, ratings_minor_fixes, send_email_to_admins, stable-spb-1.4, stable-spb-1.5, suggest_rejected_value, web_steps_improvements, xss_terminate_custom_options
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 |