describe "Joosy.Helpers.View", ->
h = Joosy.Helpers.Application
it "renders tag with string inner", ->
expect(h.tag 'div', {id: 'ololo'}, 'test').toEqual '
test
'
it "renders tag with lambda inner", ->
data = h.tag 'div', {id: 'ololo'}, -> h.tag 'div', {id: 'ololo'}, 'test'
expect(data).toEqual '