Removes test as is covered in "layergroup creation fails if CartoCSS is bogus"

This commit is contained in:
Raul Ochoa 2015-03-30 12:24:40 +02:00
parent ff515f8c12
commit 000a248ab4

View File

@ -120,18 +120,6 @@ suite.skip('server old_api', function() {
// POST STYLE
//
/////////////////////////////////////////////////////////////////////////////////
test("post'ing bad style returns 400 with error", function(done){
assert.response(server, {
url: '/tiles/my_table3/style?map_key=1234',
method: 'POST',
headers: {host: 'localhost', 'Content-Type': 'application/x-www-form-urlencoded' },
data: querystring.stringify({style: '#my_table3{backgxxxxxround-color:#fff;}'})
},{
status: 400,
body: /Unrecognized rule: backgxxxxxround-color/
}, function() { done(); });
});
test("post'ing unparseable style returns 400 with error", function(done){
assert.response(server, {