Fix convention tests running for gists

This commit is contained in:
Marius Ungureanu
2014-02-26 04:11:27 +02:00
parent 6f3e3232ed
commit f3f2b9f132
6 changed files with 377 additions and 4 deletions
+11 -1
View File
@@ -1,8 +1,10 @@
using System;
using Octokit.Internal;
using System.Diagnostics;
using System.Globalization;
namespace Octokit
{
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public class GistRequest : RequestParameters
{
public GistRequest(DateTimeOffset since)
@@ -11,5 +13,13 @@ namespace Octokit
}
public DateTimeOffset Since { get; set; }
internal string DebuggerDisplay
{
get
{
return String.Format(CultureInfo.InvariantCulture, "Since: {0}", Since);
}
}
}
}