This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Twitter conversation: https://twitter.com/Deap82/status/660723939602247680 | |
| //I got it working by using this in Given, but it seemed strange to me that | |
| //FakeUrlHelper would not be part of it... | |
| protected override void Given() | |
| { | |
| base.Given(); | |
| this.UseFakeContextForController(); | |
| SUT.Url = new UrlHelper(SUT.ControllerContext.RequestContext); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <square></square> | |
| </template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <square></square> | |
| </template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <h1>${message}</h1> | |
| </template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <fieldset> | |
| <legend>router-view</legend> | |
| <router-view></router-view> | |
| </fieldset> | |
| </template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <require from="./my-attr-options"></require> | |
| <require from="./my-attr"></require> | |
| <div my-attr my-attr-options="option1.bind: firstInstanceOpt"></div> | |
| <div my-attr my-attr-options="option1.bind: secondInstanceOpt"></div> | |
| <div my-attr></div> | |
| </template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="container"> | |
| <div class="block1"> | |
| <div class="block1__inner"> | |
| </div> | |
| </div> | |
| <div class="block1 block1--bordered"> | |
| <div class="block1__inner"> | |
| </div> | |
| </div> | |
| <div class="block1"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <ul id="menu"> | |
| <li><a href="#/Welcome">Welcome</a></li> | |
| <li><a href="#/Products">Products</a></li> | |
| <li><a href="#/Contact">Contact</a></li> | |
| </ul> | |
| <div id="content"> | |
| <router-view></router-view> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <ul id="menu"> | |
| <li><a href="#/Welcome">Welcome</a></li> | |
| <li><a href="#/Products">Products</a></li> | |
| <li><a href="#/Contact">Contact</a></li> | |
| </ul> | |
| <div id="content"> | |
| <router-view></router-view> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <ul id="menu"> | |
| <li><a href="#/Welcome">Welcome</a></li> | |
| <li><a href="#/Products">Products</a></li> | |
| <li><a href="#/Contact">Contact</a></li> | |
| </ul> | |
| <div id="content"> | |
| <router-view></router-view> | |
| </div> |
OlderNewer