Skip to content

Commit

Permalink
Tuned tests
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown authored and unknown committed Aug 6, 2013
1 parent 19783b7 commit 5f0fb6c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions lib/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jade-angularjs-brunch",
"version": "1.0.4",
"version": "1.0.5",
"description": "Adds Jade support to brunch with angularjs template cache modules.",
"author": {
"name": "Gulin Serge",
Expand Down
16 changes: 8 additions & 8 deletions test/JadeAngularJsCompiler.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -218,29 +218,29 @@ describe "JadeAngularJsCompiler", ->

it "For modules it should filtered and grouped them correct", ->
expect = [
name: 'test'
name: 'test.folder'
templates: [
path: 'test/folder/partial1.jade'
result: '<!DOCTYPE html>'
module: 'test'
module: 'test.folder'
,
path: 'test/folder/partial2.jade'
result: '<!DOCTYPE html>'
module: 'test'
module: 'test.folder'
]
filename: '_public/js/test.js'
filename: '_public/js/test.folder.js'
,
name: 'test.folder',
name: 'test.folder.folder',
templates: [
path: 'test/folder/folder/partial1.jade'
result: '<!DOCTYPE html>'
module: 'test.folder'
module: 'test.folder.folder'
,
path: 'test/folder/folder/partial2.jade'
result: '<!DOCTYPE html>'
module: 'test.folder'
module: 'test.folder.folder'
],
filename: '_public/js/test.folder.js'
filename: '_public/js/test.folder.folder.js'
]

plugin.onCompile data
Expand Down

0 comments on commit 5f0fb6c

Please sign in to comment.