()
| 751 | ) |
| 752 | |
| 753 | def one(): |
| 754 | return ( |
| 755 | fixture_session() |
| 756 | .query(Company) |
| 757 | .join(Company.employees) |
| 758 | .filter(Person.name == "asdf") |
| 759 | ) |
| 760 | |
| 761 | def two(): |
| 762 | wp = with_polymorphic(Person, [Manager, Engineer]) |
nothing calls this directly
no test coverage detected