Created
June 25, 2010 03:06
-
-
Save fsouza/452333 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
@Given('I have an attribute stored in world') | |
def i_have_an_attirbute_stored_in_world(step): | |
world._name = 'My name' # This line stores _name in world | |
world._name = 'His name' # This line raises an exception |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment