(t *testing.T)
| 1733 | } |
| 1734 | |
| 1735 | func TestIncludesUnshadowedDefault(t *testing.T) { |
| 1736 | t.Parallel() |
| 1737 | |
| 1738 | tt := fileContentTest{ |
| 1739 | Dir: "testdata/includes_unshadowed_default", |
| 1740 | Target: "included", |
| 1741 | TrimSpace: true, |
| 1742 | Files: map[string]string{ |
| 1743 | "file.txt": "included", |
| 1744 | }, |
| 1745 | } |
| 1746 | t.Run("", func(t *testing.T) { |
| 1747 | t.Parallel() |
| 1748 | tt.Run(t) |
| 1749 | }) |
| 1750 | } |
| 1751 | |
| 1752 | func TestSupportedFileNames(t *testing.T) { |
| 1753 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…