mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-01-23 01:40:10 +00:00
9 lines
254 B
JavaScript
9 lines
254 B
JavaScript
import test from "ava";
|
|
import TemplatePermalinkNoWrite from "../src/TemplatePermalinkNoWrite";
|
|
|
|
test("Test standard method signature", t => {
|
|
let perm = new TemplatePermalinkNoWrite();
|
|
t.is(perm.toHref(), false);
|
|
t.is(perm.toString(), false);
|
|
});
|