コード例 #1
0
ファイル: Get.cs プロジェクト: tymphillips/pusher-http-dotnet
        public void url_is_in_expected_format()
        {
            _pusher.Get <object>("/channels");

            _subClient.Received().Execute(
                Arg.Is <IRestRequest>(
                    x => x.Resource.StartsWith("/apps/" + Config.AppId + "/channels")
                    )
                );
        }