mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-10-31 07:57:35 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			445 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			445 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from __future__ import unicode_literals
 | |
| 
 | |
| 
 | |
| def test_subtrees(EN):
 | |
|     sent = EN('The four wheels on the bus turned quickly')
 | |
|     wheels = sent[2]
 | |
|     bus = sent[5]
 | |
|     assert len(list(wheels.lefts)) == 2
 | |
|     assert len(list(wheels.rights)) == 1
 | |
|     assert len(list(wheels.children)) == 3
 | |
|     assert len(list(bus.lefts)) == 1
 | |
|     assert len(list(bus.rights)) == 0
 | |
|     assert len(list(bus.children)) == 1
 | |
| 
 | |
|     assert len(list(wheels.subtree)) == 6
 |