Added Observable classes and got started on observable tests

This commit is contained in:
Jasmine
2016-01-28 14:29:08 -05:00
parent fd91d72ce3
commit 19f0bf389e
18 changed files with 246 additions and 2 deletions
@@ -0,0 +1,31 @@
using System;
using System.Reactive;
using System.Reactive.Threading.Tasks;
using Octokit.Reactive.Internal;
namespace Octokit.Reactive
{
public class ObservableUserAdministrationClient : IObservableUserAdministrationClient
{
public IObservable<Unit> Demote(string login)
{
throw new NotImplementedException();
}
public IObservable<Unit> Promote(string login)
{
Ensure.ArgumentNotNullOrEmptyString(login, "login");
throw new NotImplementedException();
}
public IObservable<Unit> Suspend(string login)
{
throw new NotImplementedException();
}
public IObservable<Unit> Unsuspend(string login)
{
throw new NotImplementedException();
}
}
}