001/*
002 * The contents of this file are subject to the license and copyright
003 * detailed in the LICENSE and NOTICE files at the root of the source
004 * tree.
005 */
006package org.fcrepo.integration.rdf;
007
008import org.junit.Ignore;
009import org.junit.Test;
010
011/**
012 * @author cabeer
013 * @author ajs6f
014 */
015@Ignore // TODO FIX THESE TESTS
016public class MiscExamplesIT extends AbstractIntegrationRdfIT {
017
018
019    @Test
020    public void testSyntacticallyInvalidDate() {
021        createLDPRSAndCheckResponse(getRandomUniqueId(), "<> <info:some/property> \"dunno\"^^<http://www.w3" +
022                ".org/2001/XMLSchema#dateTime>");
023    }
024}