VIVO-725 modify TestLinkedOpenData so it can be fully automated.

This commit is contained in:
j2blake 2014-03-26 16:06:29 -04:00
parent 713b6317d1
commit 9e2519af21
3 changed files with 31 additions and 12 deletions

View file

@ -78,7 +78,7 @@ function TestLOD() {
function requestWithAcceptHeader(uri, mimetype) {
var parms = {
url: "individual/" + uri,
url: "/vivo/individual/" + uri,
headers: {Accept: mimetype},
dataType: "text",
complete: displayResult
@ -89,7 +89,7 @@ function TestLOD() {
function requestWithFormat(uri, format) {
var parms = {
url: "individual/" + uri + "?format=" + format,
url: "/vivo/individual/" + uri + "?format=" + format,
dataType: "text",
complete: displayResult
};
@ -99,7 +99,7 @@ function TestLOD() {
function requestWithExtension(uri, extension) {
var parms = {
url: "individual/" + uri + "/" + uri + "." + extension,
url: "/vivo/individual/" + uri + "/" + uri + "." + extension,
dataType: "text",
complete: displayResult
};

File diff suppressed because one or more lines are too long