Sha256: b5bef1cda09f9fb590fdf70674b2b4197b106766b6c81b0e81e33e07caf6f824
Contents?: true
Size: 407 Bytes
Versions: 13
Compression:
Stored size: 407 Bytes
Contents
describe("Material segment 'shadow_map'", function() { var matr; beforeEach(function() { matr = new Jax.Material(); spyOn(matr, 'prepareShader').andCallThrough(); }); it("should compile successfully", function() { matr.addLayer(new Jax.Material.ShadowMap()); new Jax.Mesh({material:matr}).render(SPEC_CONTEXT); expect(matr.prepareShader).toHaveBeenCalled(); }); });
Version data entries
13 entries across 13 versions & 1 rubygems