unittests/tests/module.js
author hamidouk
Tue, 27 Dec 2011 10:06:05 +0100
branchpopcorn-port
changeset 530 3cc4a789dae7
parent 461 a9c5eeca190c
permissions -rw-r--r--
added unit tests for sparklineWidget

/* test module for base widgets */
function test_module() {
  module("Base module testing", 
  {setup : function() {
    this.Popcorn = Popcorn("#popcorn-div");
    
    this.dt = new IriSP.DataLoader();
    this.ser = new IriSP.JSONSerializer(this.dt, "/url");
  } }
  );
  
  test("test initialisation", function() {
    var config = { a : 540};
    var mod = new IriSP.Module(this.Popcorn, config, this.ser);
    deepEqual(mod._config, config, "Check that config is copied correctly");
  });
};