Add Intel copyright header.
[profile/ivi/cowhide.git] / tests / unit / cowhide-simple-scrollable.js
1 $(function () {
2
3     module("cowhide-simple-scrollable")
4
5       test("widget has been made scrollable", function () {
6         var page = $('<div class="page"></div>')
7         var scrollable = $('<div class="ch-simple-scrollable"><p>Test</p></div>')
8
9         scrollable.appendTo(page)
10         scrollable.ch_simple_scrollable('enable')
11
12         ok(scrollable.find('.ch-simple-scrollable-content').length > 0, "element has ch-simple-scrollable-content child")
13       })
14 })