| OLD | NEW |
| 1 # Copyright (c) 2010 Robert Mela | 1 # Copyright (c) 2010 Robert Mela |
| 2 # | 2 # |
| 3 # Permission is hereby granted, free of charge, to any person obtaining a | 3 # Permission is hereby granted, free of charge, to any person obtaining a |
| 4 # copy of this software and associated documentation files (the | 4 # copy of this software and associated documentation files (the |
| 5 # "Software"), to deal in the Software without restriction, including | 5 # "Software"), to deal in the Software without restriction, including |
| 6 # without limitation the rights to use, copy, modify, merge, publish, dis- | 6 # without limitation the rights to use, copy, modify, merge, publish, dis- |
| 7 # tribute, sublicense, and/or sell copies of the Software, and to permit | 7 # tribute, sublicense, and/or sell copies of the Software, and to permit |
| 8 # persons to whom the Software is furnished to do so, subject to the fol- | 8 # persons to whom the Software is furnished to do so, subject to the fol- |
| 9 # lowing conditions: | 9 # lowing conditions: |
| 10 # | 10 # |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 curdir = os.path.dirname( os.path.abspath(__file__) ) | 119 curdir = os.path.dirname( os.path.abspath(__file__) ) |
| 120 srcroot = curdir + "/../.." | 120 srcroot = curdir + "/../.." |
| 121 sys.path = [ srcroot ] + sys.path | 121 sys.path = [ srcroot ] + sys.path |
| 122 logging.basicConfig() | 122 logging.basicConfig() |
| 123 log.setLevel(logging.INFO) | 123 log.setLevel(logging.INFO) |
| 124 suite = unittest.TestLoader().loadTestsFromTestCase(PasswordPropertyTest) | 124 suite = unittest.TestLoader().loadTestsFromTestCase(PasswordPropertyTest) |
| 125 unittest.TextTestRunner(verbosity=2).run(suite) | 125 unittest.TextTestRunner(verbosity=2).run(suite) |
| 126 | 126 |
| 127 import boto | 127 import boto |
| 128 | 128 |
| OLD | NEW |