Mercurial > hg > config
comparison .emacs @ 638:6dedad97c4eb
STUB: .emacs
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Tue, 04 Mar 2014 10:18:23 -0800 |
parents | d37391e845f5 |
children | 15c20cfc6b22 |
comparison
equal
deleted
inserted
replaced
637:a9c390903d61 | 638:6dedad97c4eb |
---|---|
194 ") | 194 ") |
195 | 195 |
196 (fset 'python-test "#!/usr/bin/env python | 196 (fset 'python-test "#!/usr/bin/env python |
197 | 197 |
198 import os | 198 import os |
199 import tempfile | |
199 import unittest | 200 import unittest |
200 | 201 |
201 here = os.path.dirname(os.path.abspath(__file__)) | 202 here = os.path.dirname(os.path.abspath(__file__)) |
202 | 203 |
203 class Test(unittest.TestCase): | 204 class Test(unittest.TestCase): |
204 def test_(self): | 205 def test_basic(self): |
205 pass | 206 pass |
206 | 207 |
207 if __name__ == '__main__': | 208 if __name__ == '__main__': |
208 unittest.main() | 209 unittest.main() |
209 ") | 210 ") |