File: lastfm-node-test.js

package info (click to toggle)
node-lastfm 0.9.2-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 248 kB
  • ctags: 212
  • sloc: sh: 17; makefile: 4
file content (43 lines) | stat: -rw-r--r-- 831 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
require("./common.js");

var querystring = require("querystring");

(function() {
  var lastfm;

  describe("default LastFmNode instance")
    
  before(function() {
    lastfm = new LastFmNode();
  })

  it("has default host", function() {
    assert.equal("ws.audioscrobbler.com", lastfm.host);
  });
})();

(function() {
  var lastfm;

  describe("LastFmNode options")

  before(function() {
    lastfm = new LastFmNode({
      api_key: "abcdef12345",
      secret: "ghijk67890",
      host: "test.audioscrobbler.com"
    });
  })

  it("configures api key", function() {
    assert.equal("abcdef12345", lastfm.api_key);
  });

  it("configures secret", function() {
    assert.equal("ghijk67890", lastfm.secret);
  });

  it("configures host", function() {
    assert.equal("test.audioscrobbler.com", lastfm.host);
  });
})();