(t *testing.T)
| 82 | } |
| 83 | |
| 84 | func TestContent(t *testing.T) { |
| 85 | testsuite.ContentSuite(t, "metadata", createContentStoreWithPolicy()) |
| 86 | testsuite.ContentCrossNSSharedSuite(t, "metadata", createContentStoreWithPolicy()) |
| 87 | testsuite.ContentCrossNSIsolatedSuite( |
| 88 | t, "metadata", createContentStoreWithPolicy([]DBOpt{ |
| 89 | WithPolicyIsolated, |
| 90 | }...)) |
| 91 | testsuite.ContentSharedNSIsolatedSuite( |
| 92 | t, "metadata", createContentStoreWithPolicy([]DBOpt{ |
| 93 | WithPolicyIsolated, |
| 94 | }...)) |
| 95 | } |
| 96 | |
| 97 | func TestContentLeased(t *testing.T) { |
| 98 | ctx, db := testDB(t) |
nothing calls this directly
no test coverage detected
searching dependent graphs…