2023-01-21 17:53:41 +00:00
|
|
|
const caesar = require("./caesar");
|
2022-02-20 19:07:44 +00:00
|
|
|
|
2023-01-21 17:53:41 +00:00
|
|
|
test("works with single letters", () => {
|
|
|
|
expect(caesar("A", 1)).toBe("B");
|
2022-02-20 19:07:44 +00:00
|
|
|
});
|
2023-01-21 17:53:41 +00:00
|
|
|
test.skip("works with words", () => {
|
|
|
|
expect(caesar("Aaa", 1)).toBe("Bbb");
|
2022-02-20 19:07:44 +00:00
|
|
|
});
|
2023-01-21 17:53:41 +00:00
|
|
|
test.skip("works with phrases", () => {
|
|
|
|
expect(caesar("Hello, World!", 5)).toBe("Mjqqt, Btwqi!");
|
2022-02-20 19:07:44 +00:00
|
|
|
});
|
2023-01-21 17:53:41 +00:00
|
|
|
test.skip("works with negative shift", () => {
|
|
|
|
expect(caesar("Mjqqt, Btwqi!", -5)).toBe("Hello, World!");
|
2022-02-20 19:07:44 +00:00
|
|
|
});
|
2023-01-21 17:53:41 +00:00
|
|
|
test.skip("wraps", () => {
|
|
|
|
expect(caesar("Z", 1)).toBe("A");
|
2022-02-20 19:07:44 +00:00
|
|
|
});
|
2023-01-21 17:53:41 +00:00
|
|
|
test.skip("works with large shift factors", () => {
|
|
|
|
expect(caesar("Hello, World!", 75)).toBe("Ebiil, Tloia!");
|
2022-02-20 19:07:44 +00:00
|
|
|
});
|
2023-01-21 17:53:41 +00:00
|
|
|
test.skip("works with large negative shift factors", () => {
|
|
|
|
expect(caesar("Hello, World!", -29)).toBe("Ebiil, Tloia!");
|
2022-02-20 19:07:44 +00:00
|
|
|
});
|