| 
									
										
										
										
											2006-04-01 00:57:31 +00:00
										 |  |  | from test.test_support import run_unittest, TestSkipped | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | try: | 
					
						
							|  |  |  |     import _sqlite3 | 
					
						
							|  |  |  | except ImportError: | 
					
						
							|  |  |  |     raise TestSkipped('no sqlite available') | 
					
						
							| 
									
										
										
										
											2008-02-29 22:08:41 +00:00
										 |  |  | from sqlite3.test import (dbapi, types, userfunctions, py25tests, | 
					
						
							| 
									
										
										
										
											2008-03-28 08:32:09 +00:00
										 |  |  |                                 factory, transactions, hooks, regression, | 
					
						
							|  |  |  |                                 dump) | 
					
						
							| 
									
										
										
										
											2006-04-01 00:57:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def test_main(): | 
					
						
							|  |  |  |     run_unittest(dbapi.suite(), types.suite(), userfunctions.suite(), | 
					
						
							| 
									
										
										
										
											2008-02-29 22:08:41 +00:00
										 |  |  |                  py25tests.suite(), factory.suite(), transactions.suite(), | 
					
						
							| 
									
										
										
										
											2008-03-28 08:32:09 +00:00
										 |  |  |                  hooks.suite(), regression.suite(), dump.suite()) | 
					
						
							| 
									
										
										
										
											2006-04-01 00:57:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | if __name__ == "__main__": | 
					
						
							|  |  |  |     test_main() |