From 7c6d6eb860f4431bcb4b9c9092e499d55cc5e761 Mon Sep 17 00:00:00 2001 From: Kevin Schaaf Date: Wed, 27 Aug 2014 01:05:47 -0700 Subject: [PATCH] Add real tests. --- tests/html/core-list-basic.html | 298 ++++++++++++++++++++++++++-- tests/html/core-list-data.html | 191 ++++++++++++++++++ tests/html/core-list-delete.html | 68 ------- tests/html/core-list-selection.html | 241 ++++++++++++++++++++++ tests/js/htmltests.js | 3 +- 5 files changed, 713 insertions(+), 88 deletions(-) create mode 100755 tests/html/core-list-data.html delete mode 100755 tests/html/core-list-delete.html create mode 100755 tests/html/core-list-selection.html diff --git a/tests/html/core-list-basic.html b/tests/html/core-list-basic.html index d2e617f..5b9c27e 100755 --- a/tests/html/core-list-basic.html +++ b/tests/html/core-list-basic.html @@ -16,16 +16,25 @@ @@ -33,28 +42,279 @@ diff --git a/tests/html/core-list-data.html b/tests/html/core-list-data.html new file mode 100755 index 0000000..2ec94c4 --- /dev/null +++ b/tests/html/core-list-data.html @@ -0,0 +1,191 @@ + + + + + core-list + + + + + + + + + + + + + + + + + diff --git a/tests/html/core-list-delete.html b/tests/html/core-list-delete.html deleted file mode 100755 index c1be8f4..0000000 --- a/tests/html/core-list-delete.html +++ /dev/null @@ -1,68 +0,0 @@ - - - - - core-list - - - - - - - - - - - - - - - - - diff --git a/tests/html/core-list-selection.html b/tests/html/core-list-selection.html new file mode 100755 index 0000000..8394c80 --- /dev/null +++ b/tests/html/core-list-selection.html @@ -0,0 +1,241 @@ + + + + + core-list + + + + + + + + + + + + + + + + + diff --git a/tests/js/htmltests.js b/tests/js/htmltests.js index 78244c3..ac136b8 100644 --- a/tests/js/htmltests.js +++ b/tests/js/htmltests.js @@ -1,4 +1,5 @@ htmlSuite('core-list', function() { htmlTest('html/core-list-basic.html'); - htmlTest('html/core-list-delete.html'); + htmlTest('html/core-list-selection.html'); + htmlTest('html/core-list-data.html'); });