spec/hello_sign/api/account_spec.rb in hellosign-ruby-sdk-3.7.5 vs spec/hello_sign/api/account_spec.rb in hellosign-ruby-sdk-3.7.6
- old
+ new
@@ -21,10 +21,10 @@
end
describe '#create_account' do
before do
stub_post('/account/create', 'account')
- @body = { :email_address => 'test@example.com' }
+ @body = { email_address: 'test@example.com' }
@account = HelloSign.create_account @body
end
it 'should get the correct resource' do
expect(a_post('/account/create')).to have_been_made