This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # example unit test context using should_change and should_not_change | |
| context "Given a user" do | |
| setup do | |
| @user = create_user | |
| end | |
| context "when sent initials with a hyphen and lower case" do | |
| setup do | |
| @user.update_attributes!( :first_name => "Jason", :last_name => "happy-Klein" ) |
NewerOlder