// Note: This is actually an integration test between the LibGuideController and the LibGuideService
        public void Render_client_libguide_item()
        {
            _appSettingsService.LibGuideSource.Returns(LibGuideSource.Client);
            var expectedText = string.Format(@"<div id='api_box_iid{0}_bid{1}'></div><script type='text/javascript' src='http://api.libguides.com/api_box.php?iid={0}&bid={1}&context=object&format=js'></script>", _account, _item);

            _controller.WithCallTo(c => c.Index(_account, _item)).ShouldRenderContentResult(expectedText);
            _simpleWebRequestService.DidNotReceive().GetResponseText(Arg.Any <string>());
        }