Sha256: 63dcf017b3a80d6ba01d784cfb69419dcc96e94aff2edbd07d193bd00d555337
Contents?: true
Size: 377 Bytes
Versions: 8
Compression:
Stored size: 377 Bytes
Contents
require "spec_helper" describe UserFormWithRubyErrors do xit "1. 'UserFormWithRubyErrors' when saving should through an error!" do params = { user: { email: 'email@gmail.com', terms_of_service: true } } user_form = UserFormWithRubyErrors.new(params[:user]) save_result = user_form.save save_result.should == true User.all.count.should == 1 end end
Version data entries
8 entries across 8 versions & 1 rubygems