()
| 294 | assert "error" not in r |
| 295 | |
| 296 | def test_ruby_finds_class(): |
| 297 | r = extract_ruby(FIXTURES / "sample.rb") |
| 298 | assert any("ApiClient" in l for l in _labels(r)) |
| 299 | |
| 300 | def test_ruby_finds_methods(): |
| 301 | r = extract_ruby(FIXTURES / "sample.rb") |
nothing calls this directly
no test coverage detected