(t *testing.T)
| 660 | } |
| 661 | |
| 662 | func TestLocalWorkspaceAddress(t *testing.T) { |
| 663 | t.Parallel() |
| 664 | |
| 665 | require.Equal(t, "file:///repo", localWorkspaceAddress("/repo", ".")) |
| 666 | require.Equal(t, "file:///repo/services/payment", localWorkspaceAddress("/repo", "services/payment")) |
| 667 | } |
| 668 | |
| 669 | func TestRemoteWorkspaceAddress(t *testing.T) { |
| 670 | t.Parallel() |
nothing calls this directly
no test coverage detected