mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
moved seriesmodule to restmodule
This commit is contained in:
parent
4afec69c79
commit
d85b825e06
11 changed files with 142 additions and 43 deletions
|
@ -1,4 +1,5 @@
|
|||
using FluentAssertions;
|
||||
using System.Net;
|
||||
using FluentAssertions;
|
||||
using NUnit.Framework;
|
||||
using NzbDrone.Api.Series;
|
||||
|
||||
|
@ -23,10 +24,10 @@ namespace NzbDrone.Integration.Test
|
|||
}
|
||||
|
||||
[Test]
|
||||
[Ignore]
|
||||
public void add_series_without_required_fields_should_return_400()
|
||||
public void add_series_without_required_fields_should_return_badrequest()
|
||||
{
|
||||
Series.Post(new SeriesResource());
|
||||
var errors = Series.InvalidPost(new SeriesResource());
|
||||
errors.Should().NotBeEmpty();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue