Skip to content

Instantly share code, notes, and snippets.

@lepture
Created June 28, 2012 08:11
Show Gist options
  • Save lepture/3009835 to your computer and use it in GitHub Desktop.
Save lepture/3009835 to your computer and use it in GitHub Desktop.
class TestOAuth(object):
def setUp(self):
self.access_token = 'you get it'
def test_func1(self):
do_something_with(self.access_token)
def test_func2(self):
do_another_thing_with(self.access_token)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment