Exemple #1
0
        public void WhenCreatingAsAjaxItShouldDelegateToTheRespository()
        {
            var place = new Place("some place");

            _controller.CreateAjax(place);
            _allPlaces.Verify(it => it.Save(place));
        }