@@ -5,11 +5,9 @@ var Promise = require('bluebird'),
5
5
expect = require ( 'expect.js' ) ,
6
6
should = require ( 'should' ) ;
7
7
8
-
9
-
10
-
11
8
describe ( "Integration Tests" , function ( ) {
12
9
var collection ;
10
+
13
11
before ( function ( ) {
14
12
collection = LIB . dir ( __dirname + '/input' , {
15
13
elements : {
@@ -20,6 +18,7 @@ describe("Integration Tests", function () {
20
18
}
21
19
} ) ;
22
20
} ) ;
21
+
23
22
run ( "nothing" ) ;
24
23
run ( "simple" ) ;
25
24
run ( "page" ) ;
@@ -50,7 +49,6 @@ describe("Integration Tests", function () {
50
49
run ( "custom-element" ) ;
51
50
run ( "cache-references" ) ;
52
51
53
-
54
52
function run ( name ) {
55
53
it ( "should process " + name + ".html" , function ( ) {
56
54
return Promise . all ( [
@@ -73,8 +71,37 @@ describe("Integration Tests", function () {
73
71
template . reverse = function ( input ) {
74
72
return input . split ( '' ) . reverse ( ) . join ( '' ) ;
75
73
} ;
74
+
76
75
template . render ( fixtures , content ) . should . equal ( expected ) ;
77
76
} ) ;
78
77
} ) ;
79
78
}
80
- } ) ;
79
+
80
+ it ( "should process custom-string.html" , function ( ) {
81
+ return Promise . all ( [
82
+ fs . readFileAsync ( __dirname + '/input/custom-string.html' , 'utf8' ) ,
83
+ fs . readFileAsync ( __dirname + '/expected/custom-string.html' , 'utf8' )
84
+ ] ) . then ( function ( html ) {
85
+ const input = html [ 0 ]
86
+ const expected = html [ 1 ]
87
+
88
+ var template = LIB . string ( input , {
89
+ elements : {
90
+ 'raw-html' : function ( params ) {
91
+ return params . content
92
+ }
93
+ }
94
+ } )
95
+
96
+ template . toCase = function ( direction , input ) {
97
+ return input [ 'to' + direction . charAt ( 0 ) . toUpperCase ( ) + direction . slice ( 1 ) + 'Case' ] ( ) ;
98
+ } ;
99
+
100
+ template . reverse = function ( input ) {
101
+ return input . split ( '' ) . reverse ( ) . join ( '' ) ;
102
+ } ;
103
+
104
+ template . render ( { } ) . should . equal ( expected ) ;
105
+ } ) ;
106
+ } ) ;
107
+ } ) ;
0 commit comments