190. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 10/4/2017 8:04:38 AM Central Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

190.1 Files compared

# Location File Last Modified
1 rdk.zip\rdk\product\production\rdk\src\write\pick-list\progressnotes progress-notes-titles-icd-10-fetch-list-itest-spec.js Mon Aug 21 12:51:00 2017 UTC
2 rdk.zip\rdk\product\production\rdk\src\write\pick-list\progressnotes progress-notes-titles-icd-10-fetch-list-itest-spec.js Tue Oct 3 19:19:47 2017 UTC

190.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 52
Changed 1 10
Inserted 0 0
Removed 0 0

190.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

190.4 Active regular expressions

No regular expressions were active.

190.5 Comparison detail

  1   /*global s inon, desc ribe, it * /
  2   'use stric t';
  3  
  4   var fetch  = require( './progres s-notes-ti tles-icd-1 0-fetch-li st').fetch ;
  5  
  6   var log =  sinon.stub (require(' bunyan').c reateLogge r({ name:  'progress- notes-titl es-icd-10- fetch-list ' }));
  7  
  8   var config uration =  {
  9       enviro nment: 'de velopment' ,
  10       contex t: 'OR CPR S GUI CHAR T',
  11         host: ' IP          ',
  12         port:  PORT ,
  13         accessCode : ' REDACT ',
  14         verifyCode : ' REDACTED ',
  15         localIP: ' IP        ',
  16       localA ddress: 'l ocalhost',
  17       site:  '9E7A',
  18       rootPa th: '/reso urce/write -pick-list '
  19   };
  20  
  21   describe(' progress-n otes-title s-icd-10 r esource in tegration  test', fun ction() {
  22       it('ca n call the  fetch RPC ', functio n (done) {
  23           th is.timeout (20000);
  24  
  25           fe tch(log, c onfigurati on, functi on(err, re sult) {
  26                expect(e rr).to.be. falsy();
  27                expect(r esult).to. be.truthy( );
  28                done();
  29           },  {searchSt ring: 'kne e'});
  30       });
  31   });