Sha256: 4d750bfeca2ede5636bce5f887884d1c5e3c7bf156f94abaf6264406ad30e0b6

Contents?: true

Size: 1.96 KB

Versions: 9

Compression:

Stored size: 1.96 KB

Contents

describe 'jQuery'
  describe '.ajax()'
    it "should call the success function when 200"
      mock_request().and_return('{ foo: "bar" }', 'application/json')
      var successCalled = false
      var errorCalled = false
      $.ajax({
        type: "POST",
        url: 'foo',
        dataType: 'json',
        success: function() {
          successCalled = true
        },
        error: function(xhr, status, e) {
          alert(status)
          errorCalled = true
        }
      })
      successCalled.should.be_true
      errorCalled.should.be_false
    end
    
    it "should call the error function when 404"
      mock_request().and_return('{ foo: "bar" }', 'application/json', 404)
      var successCalled = false
      var errorCalled = false
      $.ajax({
        type: "POST",
        url: 'foo',
        dataType: 'json',
        success: function() {
          successCalled = true
        },
        error: function() {
          errorCalled = true
        }
      })
      successCalled.should.be_false
      errorCalled.should.be_true
    end
  end
  
  describe '.getJSON()'
    it 'should work with mockRequest'
      mockRequest().and_return('{ foo : "bar" }')
      $.getJSON('foo', function(response, statusText){
        response.foo.should.eql 'bar'
        statusText.should.eql 'success'
      })
    end
    
    it 'should work with a json fixture'
      mockRequest().and_return(fixture('test.json'))
      $.getJSON('foo', function(response){
        response.users.tj.email.should.eql 'tj@vision-media.ca'
      })
    end
    
    it 'should not invoke callback when response status is 4xx'
      mockRequest().and_return('foo', 'text/plain', 404)
      $.getJSON('foo', function(){
        fail('callback was invoked')
      })
    end
  end
  
  describe '.post()'
    it 'should work with mockRequest'
      mockRequest().and_return('<p></p>', 'text/html')
      $.post('foo', function(response){
        response.should.eql '<p></p>'
      })
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
jspec-3.3.1 spec/unit/spec.jquery.xhr.js
jspec-3.3.0 spec/unit/spec.jquery.xhr.js
jspec-3.2.1 spec/unit/spec.jquery.xhr.js
jspec-3.2.0 spec/unit/spec.jquery.xhr.js
jspec-3.1.3 spec/unit/spec.jquery.xhr.js
jspec-3.1.2 spec/unit/spec.jquery.xhr.js
jspec-3.1.1 spec/unit/spec.jquery.xhr.js
jspec-3.1.0 spec/unit/spec.jquery.xhr.js
jspec-3.0.0 spec/unit/spec.jquery.xhr.js