mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
21 lines
639 B
JavaScript
Executable file
21 lines
639 B
JavaScript
Executable file
// documentation on writing tests here: http://docs.jquery.com/QUnit
|
|
// example tests: https://github.com/jquery/qunit/blob/master/test/same.js
|
|
|
|
// below are some general tests but feel free to delete them.
|
|
|
|
module("example tests");
|
|
test('HTML5 Boilerplate is sweet',function(){
|
|
expect(1);
|
|
equals('boilerplate'.replace('boilerplate','sweet'),'sweet','Yes. HTML5 Boilerplate is, in fact, sweet');
|
|
|
|
});
|
|
|
|
// these test things from helper.js
|
|
test('Environment is good',function(){
|
|
expect(2);
|
|
ok( !!window.MBP, 'Mobile Boilder Plate helper is present');
|
|
notEqual( window.MBP.ua, null, "we have a user agent. winning, duh.");
|
|
});
|
|
|
|
|
|
|