diff options
author | crupest <crupest@outlook.com> | 2020-08-08 15:47:27 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-08 15:47:27 +0800 |
commit | db65d0c37ace61701deec5cc9cd74239208e0935 (patch) | |
tree | 8847b5500a529b6b62e11fb0a3db742be9c0210e /Timeline.Tests/IntegratedTests/UserTest.cs | |
parent | 151105f387c65f2285f61f8e492ad06734ec9f64 (diff) | |
parent | 976f1d9d7062aaedca52cdd6398576b717b5f58f (diff) | |
download | timeline-db65d0c37ace61701deec5cc9cd74239208e0935.tar.gz timeline-db65d0c37ace61701deec5cc9cd74239208e0935.tar.bz2 timeline-db65d0c37ace61701deec5cc9cd74239208e0935.zip |
Merge pull request #139 from crupest/user-uniqueid
Feature now user also has a unique id.
Diffstat (limited to 'Timeline.Tests/IntegratedTests/UserTest.cs')
-rw-r--r-- | Timeline.Tests/IntegratedTests/UserTest.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Timeline.Tests/IntegratedTests/UserTest.cs b/Timeline.Tests/IntegratedTests/UserTest.cs index 7fd78d0e..9dfcc6a5 100644 --- a/Timeline.Tests/IntegratedTests/UserTest.cs +++ b/Timeline.Tests/IntegratedTests/UserTest.cs @@ -12,6 +12,15 @@ namespace Timeline.Tests.IntegratedTests public class UserTest : IntegratedTestBase
{
[Fact]
+ public void UserListShouldHaveUniqueId()
+ {
+ foreach (var user in UserInfos)
+ {
+ user.UniqueId.Should().NotBeNullOrWhiteSpace();
+ }
+ }
+
+ [Fact]
public async Task GetList_NoAuth()
{
using var client = await CreateDefaultClient();
|