Guest User

Untitled

a guest
Jul 21st, 2018
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2. require "spec_helper"
  3.  
  4. describe User do
  5. before do
  6. @user = User.new
  7. end
  8. it "should reject email with invalid domain name" do
  9. @user.email = "tino@homail.com"
  10.  
  11. @user.should_not be_valid
  12. @user.should have(1).error_on(:email)
  13. end
  14. end
Add Comment
Please, Sign In to add comment