PageRenderTime 41ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/Source/Bifrost.Specs/Validation/for_ChapterValidationService/when_validating_a_chapter_with_no_validators.cs

#
C# | 16 lines | 13 code | 3 blank | 0 comment | 0 complexity | fff4097d413aa176d1dd93f3a71d9a25 MD5 | raw file
Possible License(s): CC-BY-SA-3.0
  1. using System;
  2. using Bifrost.Validation;
  3. using Machine.Specifications;
  4. namespace Bifrost.Specs.Validation.for_ChapterValidationService
  5. {
  6. [Subject(typeof (ChapterValidationService))]
  7. public class when_validating_a_chapter_with_no_validators
  8. {
  9. Establish context = () => { };
  10. Because of = () => { };
  11. It should_ = () => { };
  12. }
  13. }