Skip to content

Instantly share code, notes, and snippets.

@avk
Created August 7, 2009 06:59
Show Gist options
  • Save avk/163766 to your computer and use it in GitHub Desktop.
Save avk/163766 to your computer and use it in GitHub Desktop.
test "should only generate url tokens on creation" do
invite = invites(:page)
old_token = invite.url_token
invite.last_visited_at = 1.day.ago
invite.save
invite.reload
new_token = invite.url_token
assert old_token == new_token, "url tokens are getting changed upon update"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment