# File lib/quiz1/t/solutions/Moses Hohman/test_util.rb, line 32
        def test_offset_mod
                assert_equal(1, 27.offset_mod(26), "27 wrong")
                assert_equal(26, 26.offset_mod(26), "26 wrong")
                assert_equal(26, 0.offset_mod(26), "0 wrong")
                assert_equal(25, -1.offset_mod(26), "-1 wrong")
        end