@Test
public void testPostRawData2Reject() throws Exception {
long now = System.currentTimeMillis();
Datapoint dataPoint = new Datapoint();
dataPoint.setMetric(scheduleName+"foo");
dataPoint.setTimestamp(now);
dataPoint.setValue(1.5);
List<Datapoint> points = new ArrayList<Datapoint>(1);
points.add(dataPoint);
given()
.header(acceptJson)