An IStubbleLoader with child loaders
Inheritance: IStubbleLoader
Esempio n. 1
0
 public void CompositeLoader_Should_Be_Able_To_Contain_StringLoader()
 {
     var loader = new CompositeLoader(new StringLoader());
     const string template = "{{foo}}";
     var loadedTemplate = loader.Load("{{foo}}");
     Assert.Equal(template, loadedTemplate);
 }
Esempio n. 2
0
 public void CompositeLoader_Should_Throw_Exception_If_No_Template_Found()
 {
     var loader = new CompositeLoader(new DictionaryLoader(new Dictionary<string, string>
     {
         { "test", "{{foo}}" }
     }));
     var ex = Assert.Throws<UnknownTemplateException>(() => loader.Load("test2"));
     Assert.Equal("No template was found with the name 'test2'", ex.Message);
 }
Esempio n. 3
0
 public void CompositeLoader_Should_Fall_Through()
 {
     var loader = new CompositeLoader(new DictionaryLoader(new Dictionary<string, string>
     {
         { "test", "{{foo}}" }
     }), new StringLoader());
     const string template = "{{foo}}";
     var loadedTemplate = loader.Load("{{foo}}");
     Assert.Equal(template, loadedTemplate);
 }