58ca4e68db
- Go backend API with full CRUD for all modules (CRM, Sales, Finance, HR, Legal, Marketing, Support, Purchase, Inventory, Projects, Automation, Analytics) - Rust analytics service with parallel report generation - C runtime with POSIX shared memory IPC - PostgreSQL schema with 30+ tables, full migrations - Redis cache, sessions, pub/sub - Kafka event streaming with Zookeeper - WebSocket hub for real-time updates - Automation engine with cron jobs, workflows, event triggers - JWT authentication, multi-tenant from start - Docker Compose with all services - Nginx reverse proxy with rate limiting - Integration tests passing - Feature gap analysis against Fortnox/Odoo/Visma Refs: BOC-001
38 lines
1.3 KiB
JavaScript
38 lines
1.3 KiB
JavaScript
"use strict";
|
|
/* eslint-disable no-empty-function */
|
|
|
|
var assert = require("@sinonjs/referee").assert;
|
|
var className = require("./class-name");
|
|
|
|
describe("className", function () {
|
|
it("returns the class name of an instance", function () {
|
|
// Because eslint-config-sinon disables es6, we can't
|
|
// use a class definition here
|
|
// https://github.com/sinonjs/eslint-config-sinon/blob/master/index.js
|
|
// var instance = new (class TestClass {})();
|
|
var instance = new (function TestClass() {})();
|
|
var name = className(instance);
|
|
assert.equals(name, "TestClass");
|
|
});
|
|
|
|
it("returns 'Object' for {}", function () {
|
|
var name = className({});
|
|
assert.equals(name, "Object");
|
|
});
|
|
|
|
it("returns null for an object that has no prototype", function () {
|
|
var obj = Object.create(null);
|
|
var name = className(obj);
|
|
assert.equals(name, null);
|
|
});
|
|
|
|
it("returns null for an object whose prototype was mangled", function () {
|
|
// This is what Node v6 and v7 do for objects returned by querystring.parse()
|
|
function MangledObject() {}
|
|
MangledObject.prototype = Object.create(null);
|
|
var obj = new MangledObject();
|
|
var name = className(obj);
|
|
assert.equals(name, null);
|
|
});
|
|
});
|