Created
July 10, 2012 22:25
-
-
Save bobthecow/3086595 to your computer and use it in GitHub Desktop.
This file contains 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
last_response.body.should match_json({ | |
user: { | |
id: :user_id, | |
username: 'chancancode', | |
full_name: 'Godfrey Chan', | |
email: '[email protected]', | |
type: 'Administrator', | |
points: Fixnum, | |
homepage: /\Ahttps?\:\/\/.*\z/i, | |
created_at: WILDCARD_MATCHER, | |
updated_at: WILDCARD_MATCHER, | |
posts: [ | |
{ | |
id: Fixnum, | |
subject: 'Hello world!', | |
user_id: :user_id, | |
}.ignore_extra_keys!, | |
{ | |
id: Fixnum, | |
subject: 'An awesome blog post', | |
user_id: :user_id, | |
}.ignore_extra_keys! | |
].ordered! | |
} | |
}) |
This file contains 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
last_response.body.should match_json({ | |
'user' => { | |
'id' => :user_id, | |
'username' => 'chancancode', | |
'full_name' => 'Godfrey Chan', | |
'email' => '[email protected]', | |
'type' => 'Administrator', | |
'points' => Fixnum, | |
'homepage' => /\Ahttps?\:\/\/.*\z/i, | |
'created_at' => WILDCARD_MATCHER, | |
'updated_at' => WILDCARD_MATCHER, | |
'posts' => [ | |
{ | |
'id' => Fixnum, | |
'subject' => 'Hello world!', | |
'user_id' => :user_id | |
}.ignore_extra_keys!, | |
{ | |
'id' => Fixnum, | |
'subject' => 'An awesome blog post', | |
'user_id' => :user_id | |
}.ignore_extra_keys! | |
].ordered! | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment