Created
July 1, 2013 12:07
-
-
Save robb1e/5900278 to your computer and use it in GitHub Desktop.
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
feature "share documents" do | |
specify do | |
Given "Mary is signed in" | |
... | |
When "Joe is signed in" | |
... | |
end | |
let(:mary) { "Mary" } | |
let(:joe) { "Joe" } | |
def mary_is_signed_in | |
login_as(mary) | |
end | |
def joe_is_signed_in | |
login_as(joe) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment