(t *testing.T)
| 61 | }` |
| 62 | |
| 63 | func TestEmptyConnStr(t *testing.T) { |
| 64 | err := Import(context.Background(), "", "/tmp") |
| 65 | require.Error(t, err) |
| 66 | require.ErrorContains(t, err, "connection string cannot be empty") |
| 67 | } |
| 68 | |
| 69 | func TestEmptyBulkOutDir(t *testing.T) { |
| 70 | err := Import(context.Background(), "dgraph://localhost:9080", "") |