updated fluentassertion

This commit is contained in:
kayone
2014-08-24 18:28:41 -07:00
parent 7b2b4794c7
commit 4c8f3724a2
33 changed files with 113 additions and 73 deletions

View File

@@ -23,7 +23,7 @@ namespace NzbDrone.Libraries.Test.JsonTests
var quality = new TypeWithNumbers { Int32 = Int32.MaxValue, Int64 = Int64.MaxValue, nullableWithValue = 12 };
var result = Json.Deserialize<TypeWithNumbers>(quality.ToJson());
result.ShouldHave().AllProperties().EqualTo(quality);
result.ShouldBeEquivalentTo(quality);
}
}
}