Sha256: 428ddb0746943910175f0cb3775fa6279c365be7babecba4b08c484b337e3233

Contents?: true

Size: 1.12 KB

Versions: 7

Compression:

Stored size: 1.12 KB

Contents

var Fixtures = {
  js: {
    responseBody:   '$("content").update("<H2>Hello world!</H2>");', 
    'Content-Type': '           text/javascript     '
  },
  
  html: {
    responseBody: "Pack my box with <em>five dozen</em> liquor jugs! " +
      "Oh, how <strong>quickly</strong> daft jumping zebras vex..."
  },
  
  xml: {
    responseBody:   '<?xml version="1.0" encoding="UTF-8" ?><name attr="foo">bar</name>', 
    'Content-Type': 'application/xml'
  },
  
  json: {
    responseBody:   '{\n\r"test": 123}', 
    'Content-Type': 'application/json'
  },
  
  jsonWithoutContentType: {
    responseBody:   '{"test": 123}'
  },
  
  invalidJson: {
    responseBody:   '{});window.attacked = true;({}',
    'Content-Type': 'application/json'
  },
  
  headerJson: {
    'X-JSON': '{"test": "hello #éà"}'
  }
};

var responderCounter = 0;

// lowercase comparison because of MSIE which presents HTML tags in uppercase
var sentence = ("Pack my box with <em>five dozen</em> liquor jugs! " +
"Oh, how <strong>quickly</strong> daft jumping zebras vex...").toLowerCase();

var message = 'You must be running your tests from rake to test this feature.';

Version data entries

7 entries across 7 versions & 3 rubygems

Version Path
Fingertips-headless-squirrel-0.2.0 test/regression/prototype/unit/fixtures/ajax.js
Fingertips-headless-squirrel-0.3.0 test/regression/prototype/unit/fixtures/ajax.js
Fingertips-headless-squirrel-0.4.0 test/regression/prototype/unit/fixtures/ajax.js
Fingertips-headless-squirrel-0.5.0 test/regression/prototype/unit/fixtures/ajax.js
alloy-js-test-san-0.1.0 test/regression/prototype/unit/fixtures/ajax.js
alloy-js-test-san-0.1.1 test/regression/prototype/unit/fixtures/ajax.js
headless-squirrel-0.5.1 test/regression/prototype/unit/fixtures/ajax.js