From 16b8aa0a73f70933814aadef66bf8ec369ae3273 Mon Sep 17 00:00:00 2001 From: Jeff Williams Date: Mon, 19 Jan 2015 10:04:30 -0800 Subject: [PATCH] commit test fixture --- test/fixtures/memberoftag5.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 test/fixtures/memberoftag5.js diff --git a/test/fixtures/memberoftag5.js b/test/fixtures/memberoftag5.js new file mode 100644 index 00000000..ddc77708 --- /dev/null +++ b/test/fixtures/memberoftag5.js @@ -0,0 +1,18 @@ +'use strict'; + +/** + * Socket class. + * @class + * @memberof module:network + */ +function Socket() {} + +/** + * Open the socket. + */ +Socket.prototype.open = function() {}; + +/** + * Unique identifier for `Socket` class. + */ +Socket.uid = '12345';