public void AnyStartingForwardSlashesWillBeRemovedIfPresent()
        {
            var fileName     = _faker.Random.Word();
            var submissionId = _faker.Random.AlphaNumeric(9);
            var expectedUrl  = submissionId + "/docs/" + fileName;

            var actualResult = SaveJsonToS3Helper.ComposeFilePath("", "/" + fileName, "/" + submissionId);

            actualResult.Should().Be(expectedUrl);
        }
        public void CanComposeUrlCorrectly()
        {
            var fileName     = _faker.Random.Word();
            var submissionId = _faker.Random.AlphaNumeric(9);
            var expectedUrl  = submissionId + "/docs/" + fileName;

            var actualResult = SaveJsonToS3Helper.ComposeFilePath("", fileName, submissionId);

            actualResult.Should().Be(expectedUrl);
        }