diff options
Diffstat (limited to 'tests/unit/controlgroup/common.js')
-rw-r--r-- | tests/unit/controlgroup/common.js | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/unit/controlgroup/common.js b/tests/unit/controlgroup/common.js new file mode 100644 index 000000000..421e92e71 --- /dev/null +++ b/tests/unit/controlgroup/common.js @@ -0,0 +1,26 @@ +define( [ + "lib/common", + "ui/controlgroup", + "ui/checkboxradio", + "ui/selectmenu", + "ui/button" +], function( common ) { + +common.testWidget( "controlgroup", { + defaults: { + disabled: null, + items: { + "button": "input[type=button], input[type=submit], input[type=reset], button, a", + "checkboxradio": "input[type='checkbox'], input[type='radio']", + "selectmenu": "select" + }, + direction: "horizontal", + excludeInvisible: true, + classes: {}, + + // Callbacks + create: null + } +}); + +} ); |