TestIntegration runs integration tests against the remote
(t *testing.T)
| 18 | |
| 19 | // TestIntegration runs integration tests against the remote |
| 20 | func TestIntegration(t *testing.T) { |
| 21 | if *fstest.RemoteName == "" { |
| 22 | t.Skip("Skipping as -remote not set") |
| 23 | } |
| 24 | fstests.Run(t, &fstests.Opt{ |
| 25 | RemoteName: *fstest.RemoteName, |
| 26 | UnimplementableFsMethods: unimplementableFsMethods, |
| 27 | UnimplementableObjectMethods: unimplementableObjectMethods, |
| 28 | }) |
| 29 | } |
| 30 | |
| 31 | func TestStandard(t *testing.T) { |
| 32 | if *fstest.RemoteName != "" { |
nothing calls this directly
no test coverage detected
searching dependent graphs…