(t *testing.T)
| 339 | } |
| 340 | |
| 341 | func TestBindEmpty(t *testing.T) { |
| 342 | // t.Parallel() |
| 343 | path := "_examples/empty" |
| 344 | testPkg(t, pkg{ |
| 345 | path: path, |
| 346 | lang: features[path], |
| 347 | cmd: "build", |
| 348 | extras: nil, |
| 349 | want: []byte(`doc(pkg): |
| 350 | '\nPackage empty does not expose anything.\nWe may want to wrap and import it just for its side-effects.\n\n' |
| 351 | OK |
| 352 | `), |
| 353 | }) |
| 354 | } |
| 355 | |
| 356 | func TestBindPointers(t *testing.T) { |
| 357 | // t.Parallel() |