(t *testing.T)
| 667 | } |
| 668 | |
| 669 | func TestRemoteWorkspaceAddress(t *testing.T) { |
| 670 | t.Parallel() |
| 671 | |
| 672 | require.Equal(t, "https://github.com/dagger/dagger@main", remoteWorkspaceAddress("https://github.com/dagger/dagger", ".", "main")) |
| 673 | require.Equal(t, "https://github.com/dagger/dagger/services/payment@main", remoteWorkspaceAddress("https://github.com/dagger/dagger", "services/payment", "main")) |
| 674 | } |
| 675 | |
| 676 | func TestParseWorkspaceRemoteRef(t *testing.T) { |
| 677 | t.Parallel() |
nothing calls this directly
no test coverage detected