Headless CMS and Content Managment Hub
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

27 lines
809 B

// ==========================================================================
// Squidex Headless CMS
// ==========================================================================
// Copyright (c) Squidex UG (haftungsbeschränkt)
// All rights reserved. Licensed under the MIT license.
// ==========================================================================
using Xunit;
namespace Squidex.Infrastructure.Assets
{
public class MemoryAssetStoreTests : AssetStoreTests<MemoryAssetStore>
{
public override MemoryAssetStore CreateStore()
{
return new MemoryAssetStore();
}
[Fact]
public void Should_not_calculate_source_url()
{
var url = Sut.GeneratePublicUrl(FileName);
Assert.Null(url);
}
}
}