call site 7 for path.local.__div__
test/testing/test_collect.py - line 34
33
34
35
36
37
38
39
   def test_finds_tests(): 
->     fn = datadir / 'filetest.py'
       col = py.test.collect.Module(fn) 
       l = col.run() 
       assert len(l) == 2 
       assert l[0] == 'test_one' 
       assert l[1] == 'TestClass'