summaryrefslogtreecommitdiff
path: root/1.1.x/share/www/script/jspec/jspec.jquery.js
diff options
context:
space:
mode:
authorRobert Newson <rnewson@apache.org>2011-05-17 11:20:48 +0000
committerRobert Newson <rnewson@apache.org>2011-05-17 11:20:48 +0000
commitfa1dcf93a3661437e8751c2e1febcd63b6fc9075 (patch)
tree786689afd34fdbd506bf1dd0e53b3de54de011d3 /1.1.x/share/www/script/jspec/jspec.jquery.js
parente8e4b0d293021fe90326a85828f3cfb087bf18b7 (diff)
parent0670ae37c8af16014c71b15a0a4752e62b9dd9dd (diff)
tagging 1.1.0
git-svn-id: https://svn.apache.org/repos/asf/couchdb/tags/1.1.0@1104155 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '1.1.x/share/www/script/jspec/jspec.jquery.js')
-rw-r--r--1.1.x/share/www/script/jspec/jspec.jquery.js72
1 files changed, 0 insertions, 72 deletions
diff --git a/1.1.x/share/www/script/jspec/jspec.jquery.js b/1.1.x/share/www/script/jspec/jspec.jquery.js
deleted file mode 100644
index fcad7ab9..00000000
--- a/1.1.x/share/www/script/jspec/jspec.jquery.js
+++ /dev/null
@@ -1,72 +0,0 @@
-
-// JSpec - jQuery - Copyright TJ Holowaychuk <tj@vision-media.ca> (MIT Licensed)
-
-JSpec
-.requires('jQuery', 'when using jspec.jquery.js')
-.include({
- name: 'jQuery',
-
- // --- Initialize
-
- init : function() {
- jQuery.ajaxSetup({ async: false })
- },
-
- // --- Utilities
-
- utilities : {
- element: jQuery,
- elements: jQuery,
- sandbox : function() {
- return jQuery('<div class="sandbox"></div>')
- }
- },
-
- // --- Matchers
-
- matchers : {
- have_tag : "jQuery(expected, actual).length === 1",
- have_one : "alias have_tag",
- have_tags : "jQuery(expected, actual).length > 1",
- have_many : "alias have_tags",
- have_any : "alias have_tags",
- have_child : "jQuery(actual).children(expected).length === 1",
- have_children : "jQuery(actual).children(expected).length > 1",
- have_text : "jQuery(actual).text() === expected",
- have_value : "jQuery(actual).val() === expected",
- be_enabled : "!jQuery(actual).attr('disabled')",
- have_class : "jQuery(actual).hasClass(expected)",
-
- be_visible : function(actual) {
- return jQuery(actual).css('display') != 'none' &&
- jQuery(actual).css('visibility') != 'hidden' &&
- jQuery(actual).attr('type') != 'hidden'
- },
-
- be_hidden : function(actual) {
- return !JSpec.does(actual, 'be_visible')
- },
-
- have_classes : function(actual) {
- return !JSpec.any(JSpec.toArray(arguments, 1), function(arg){
- return !JSpec.does(actual, 'have_class', arg)
- })
- },
-
- have_attr : function(actual, attr, value) {
- return value ? jQuery(actual).attr(attr) == value:
- jQuery(actual).attr(attr)
- },
-
- 'be disabled selected checked' : function(attr) {
- return 'jQuery(actual).attr("' + attr + '")'
- },
-
- 'have type id title alt href src sel rev name target' : function(attr) {
- return function(actual, value) {
- return JSpec.does(actual, 'have_attr', attr, value)
- }
- }
- }
-})
-