(t *testing.T)
| 244 | } |
| 245 | |
| 246 | func TestDoubleTransform(t *testing.T) { |
| 247 | ctx := context.Background() |
| 248 | r := fstest.NewRun(t) |
| 249 | err := transform.SetOptions(ctx, "all,prefix=tac", "all,prefix=tic") |
| 250 | require.NoError(t, err) |
| 251 | file1 := r.WriteFile("toe/toe", "hello world", t1) |
| 252 | |
| 253 | r.Mkdir(ctx, r.Fremote) |
| 254 | ctx = predictDstFromLogger(ctx) |
| 255 | err = Sync(ctx, r.Fremote, r.Flocal, true) |
| 256 | testLoggerVsLsf(ctx, r.Fremote, r.Flocal, operations.GetLoggerOpt(ctx).JSON, t) |
| 257 | require.NoError(t, err) |
| 258 | |
| 259 | r.CheckLocalItems(t, file1) |
| 260 | r.CheckRemoteItems(t, fstest.NewItem("tictactoe/tictactoe", "hello world", t1)) |
| 261 | } |
| 262 | |
| 263 | func TestFileTag(t *testing.T) { |
| 264 | ctx := context.Background() |
nothing calls this directly
no test coverage detected
searching dependent graphs…