aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit
diff options
context:
space:
mode:
authorRichard Worth <rdworth@gmail.com>2011-04-09 14:53:15 -0400
committerRichard Worth <rdworth@gmail.com>2011-04-09 14:59:35 -0400
commit9412777c4b5877888b42eb50eae8e80337e5c900 (patch)
tree66b6daf7f1b6455ef92a0f01db0f1f90793cdd74 /tests/unit
parent3c13b33682655be2a2f1c68b45cd500530997c41 (diff)
downloadjquery-ui-9412777c4b5877888b42eb50eae8e80337e5c900.tar.gz
jquery-ui-9412777c4b5877888b42eb50eae8e80337e5c900.zip
Progressbar: Added unit test for #7231 - valueDiv should be hidden when value is at 0%
(cherry picked from commit 7272f3bdef8ebc81cc51d3749fdeb4696eda666a)
Diffstat (limited to 'tests/unit')
-rw-r--r--tests/unit/progressbar/progressbar_options.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/unit/progressbar/progressbar_options.js b/tests/unit/progressbar/progressbar_options.js
index 70ad7abab..230c939ab 100644
--- a/tests/unit/progressbar/progressbar_options.js
+++ b/tests/unit/progressbar/progressbar_options.js
@@ -10,6 +10,23 @@ test("{ value : 0 }, default", function() {
same( 0, $("#progressbar").progressbar("value") );
});
+// Ticket #7231 - valueDiv should be hidden when value is at 0%
+test( "value: visibility of valueDiv", function() {
+ expect( 5 );
+ var element = $( "#progressbar" ).progressbar({
+ value: 0
+ });
+ ok( element.children( ".ui-progressbar-value" ).is( ":hidden" ), "valueDiv hidden when value is initialized at 0" );
+ element.progressbar( "value", 1 );
+ ok( element.children( ".ui-progressbar-value" ).is( ":visible" ), "valueDiv visible when value is set to 1" );
+ element.progressbar( "value", 100 );
+ ok( element.children( ".ui-progressbar-value" ).is( ":visible" ), "valueDiv visible when value is set to 100" );
+ element.progressbar( "value", 0 );
+ ok( element.children( ".ui-progressbar-value" ).is( ":hidden" ), "valueDiv hidden when value is set to 0" );
+ element.progressbar( "value", -1 );
+ ok( element.children( ".ui-progressbar-value" ).is( ":hidden" ), "valueDiv hidden when value set to -1 (normalizes to 0)" );
+});
+
test("{ value : 5 }", function() {
$("#progressbar").progressbar({
value: 5