mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-24 12:46:01 +03:00
60 lines
1.5 KiB
HTML
60 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html><head><title>Hurl File</title><style>
|
|
body {
|
|
counter-reset: line;
|
|
font-family: monospace;
|
|
}
|
|
|
|
span.line {
|
|
display: block;
|
|
line-height: 1.2rem;
|
|
}
|
|
|
|
span.line:before {
|
|
counter-increment: line;
|
|
content: counter(line);
|
|
display: inline-block;
|
|
border-right: 1px solid #ddd;
|
|
padding: 0 1em;
|
|
margin-right: .5em;
|
|
color: #888;
|
|
width: 2.5em;
|
|
text-align: right;
|
|
}
|
|
|
|
.method {
|
|
color: black;
|
|
}
|
|
|
|
.url {
|
|
color: darkblue;
|
|
}
|
|
|
|
.version {
|
|
color: black;
|
|
}
|
|
.status {
|
|
color: blue;
|
|
}
|
|
.section-header {
|
|
color: darkmagenta;
|
|
}
|
|
|
|
.query-type {
|
|
color: teal;
|
|
}
|
|
|
|
.predicate-type {
|
|
color: darkblue;
|
|
}
|
|
|
|
.string {
|
|
color: darkgreen;
|
|
}
|
|
|
|
.comment {
|
|
color: dimgray;
|
|
}
|
|
</style></head><body>
|
|
<div class="hurl-file"><div class="hurl-entry"><div class="request"><span class="line"><span class="method">GET</span> <span class="url">http://localhost:8000/assert-regex</span></span></div><div class="response"><span class="line"></span><span class="line"><span class="version">HTTP/1.0</span> <span class="status">200</span></span><span class="line section-header">[Asserts]</span><span class="line"><span class="query-type">regex</span> <span class="string">"Hello ([0-9]+)!"</span> not <span class="predicate-type">exists</span></span><span class="line"><span class="query-type">regex</span> <span class="string">"Hello ([a-zA-Z]+)!"</span> <span class="predicate-type">equals</span> <span class="string">"World"</span></span></div></div></div>
|
|
</body></html> |