版博士V2.0程序
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

14 行
376 B

  1. "use strict";
  2. var assert = require("assert"),
  3. hash = require("./");
  4. describe("hash", function() {
  5. it("should hash \"Mary had a little lamb.\" to 1766333550", function() {
  6. assert.equal(hash("Mary had a little lamb."), 1766333550);
  7. });
  8. it("should hash \"Hello, world!\" to 343662184", function() {
  9. assert.equal(hash("Hello, world!"), 343662184);
  10. });
  11. });