Skip to content

Commit

Permalink
Added comment test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
winstromming committed Nov 12, 2013
1 parent e14c132 commit 17c73c2
Show file tree
Hide file tree
Showing 3 changed files with 188 additions and 1 deletion.
73 changes: 73 additions & 0 deletions test/example/assets/sass/partials/comments/_comments-sass.sass
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
/*
Comment 2a
==========
Description
<p>Example</p>
*/
/*
Comment 2b
==========
Description
```
Example
```
*/
/*
Comment 2c
==========
Description
<p>Example</p>
*/
/*
Comment 2d
==========
Description
```
<p>Example</p>
```
*/

/*
* Comment 3a
* ==========
* Description
* <p>Example</p>
*/
/*
* Comment 3b
* ==========
* Description
* ```
* Example
* ```
*/
/*
*
* Comment 3c
* ==========
*
* Description
*
* <p>Example</p>
*
*/
/*
*
* Comment 3d
* ==========
*
* Description
*
* ```
* <p>Example</p>
* ```
*
*/
110 changes: 110 additions & 0 deletions test/example/assets/sass/partials/comments/_comments-scss.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
/*
Comment 1a
==========
Description
<p>Example</p>
*/
/*
Comment 1b
==========
Description
```
Example
```
*/
/*
Comment 1c
==========
Description
<p>Example</p>
*/
/*
Comment 1d
==========
Description
```
<p>Example</p>
```
*/

/*
Comment 2a
==========
Description
<p>Example</p>
*/
/*
Comment 2b
==========
Description
```
Example
```
*/
/*
Comment 2c
==========
Description
<p>Example</p>
*/
/*
Comment 2d
==========
Description
```
<p>Example</p>
```
*/

/*
* Comment 3a
* ==========
* Description
* <p>Example</p>
*/
/*
* Comment 3b
* ==========
* Description
* ```
* Example
* ```
*/
/*
*
* Comment 3c
* ==========
*
* Description
*
* <p>Example</p>
*
*/
/*
*
* Comment 3d
* ==========
*
* Description
*
* ```
* <p>Example</p>
* ```
*
*/
6 changes: 5 additions & 1 deletion test/example/assets/sass/screen.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,8 @@
@import "partials/objects/alerts";

// Modules
@import "partials/modules/navigation";
@import "partials/modules/navigation";

// Comments
@import "partials/comments/comments-sass";
@import "partials/comments/comments-scss";

0 comments on commit 17c73c2

Please sign in to comment.