Skip to content

Instantly share code, notes, and snippets.

@sevos
Created December 26, 2011 09:42
Show Gist options
  • Save sevos/1520815 to your computer and use it in GitHub Desktop.
Save sevos/1520815 to your computer and use it in GitHub Desktop.
module Inviter
def invite(invitee)
open_profile(me)
within ".header" do
fill_in "Invite", with: invitee.email
click_link "Invite"
end
def invite(invitee)
Factory(:invitation, inviter: me, invitee_email: invitee.email)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment