chore(rubocop): giganto rubocop commit.
muahahahah
This commit is contained in:
@@ -1,10 +1,11 @@
|
||||
require 'spec_helper'
|
||||
# frozen_string_literal: true
|
||||
require "spec_helper"
|
||||
|
||||
feature 'sensitive data exposure' do
|
||||
feature "sensitive data exposure" do
|
||||
before do
|
||||
UserFixture.reset_all_users
|
||||
@normal_user = UserFixture.normal_user
|
||||
@normal_user.work_info.update_attribute(:SSN, '999-99-9999')
|
||||
@normal_user.work_info.update_attribute(:SSN, "999-99-9999")
|
||||
end
|
||||
|
||||
# this won't work with javascript_driver, as it'll apply the javascript
|
||||
@@ -14,6 +15,6 @@ feature 'sensitive data exposure' do
|
||||
|
||||
visit "/users/#{@normal_user.user_id}/work_info"
|
||||
pending if verifying_fixed?
|
||||
expect(page.source).to include '999-99-9999'
|
||||
expect(page.source).to include "999-99-9999"
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user