Reference: How to conduct a full code review on GitHub
./review.sh [prefix-]
Reference: How to conduct a full code review on GitHub
./review.sh [prefix-]
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| def test_user_logged_in_cookie_1(self): | |
| """test that if the user is logged in and the cookies are not right, some new cookies are sent back""" | |
| print "between here" | |
| with self.app.test_client() as c: | |
| with c.session_transaction() as sess: | |
| sess['user_id'] = u'4d2203d39f' | |
| sess['_fresh'] = True | |
| resp = c.get('/') | |
| #print resp.headers |