(t *testing.T)
| 1716 | } |
| 1717 | |
| 1718 | func TestIncludesShadowedDefault(t *testing.T) { |
| 1719 | t.Parallel() |
| 1720 | |
| 1721 | tt := fileContentTest{ |
| 1722 | Dir: "testdata/includes_shadowed_default", |
| 1723 | Target: "included", |
| 1724 | TrimSpace: true, |
| 1725 | Files: map[string]string{ |
| 1726 | "file.txt": "shadowed", |
| 1727 | }, |
| 1728 | } |
| 1729 | t.Run("", func(t *testing.T) { |
| 1730 | t.Parallel() |
| 1731 | tt.Run(t) |
| 1732 | }) |
| 1733 | } |
| 1734 | |
| 1735 | func TestIncludesUnshadowedDefault(t *testing.T) { |
| 1736 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…