Sha256: 68db3447613efa1a1d22f21fb887dbec634ab3592453facc4485d79a54d4d753

Contents?: true

Size: 1.16 KB

Versions: 26

Compression:

Stored size: 1.16 KB

Contents

var assert = require('assert');
var rgbRegex = require('..');

var rgbStrings = [
  'rgb(12,34,56)',
  'rgb(255, 255,      255)',
  'rgb(1,   1,1)'
];

var inexactRgbStrings = [
  'rgb(,,)',
  'rGb(12,34,56)',
  'rgb(12, 34, 200) ',
  '   rgb(12,34,56)',
  'rgb(1,2,)'
];

describe('rgb-regex', function() {

  describe('exact: true', function() {

    it('should return a regex that matches exact rgb strings', function() {
      rgbStrings.forEach(function(rgb) {
        assert.ok(rgbRegex({ exact: true }).test(rgb));
      });
    });

    it('should return a regex that does not match invalid rgb strings', function() {
      inexactRgbStrings.forEach(function(invalidRgb) {
        assert.ok(!rgbRegex({ exact: true }).test(invalidRgb));
      });
    });
  });

  describe('g', function() {

    it('should match rgb strings', function() {
      assert.deepEqual(
        rgbStrings.join('foobar').match(rgbRegex()),
        rgbStrings
      )
    });

    it('should not match non rgb strings', function() {
      assert.deepEqual(
        inexactRgbStrings.join('foobar').match(rgbRegex()),
        ['rGb(12,34,56)', 'rgb(12, 34, 200)', 'rgb(12,34,56)']
      );
    });
  });
});

Version data entries

26 entries across 25 versions & 8 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/rgb-regex/test/test.js
disco_app-0.18.0 test/dummy/node_modules/rgb-regex/test/test.js
disco_app-0.18.2 test/dummy/node_modules/rgb-regex/test/test.js
disco_app-0.16.1 test/dummy/node_modules/rgb-regex/test/test.js
disco_app-0.15.2 test/dummy/node_modules/rgb-regex/test/test.js
disco_app-0.18.4 test/dummy/node_modules/rgb-regex/test/test.js
disco_app-0.18.1 test/dummy/node_modules/rgb-regex/test/test.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/rgb-regex/test/test.js
disco_app-0.14.0 test/dummy/node_modules/rgb-regex/test/test.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/rgb-regex/test/test.js
tang-0.2.1 spec/tang_app/node_modules/rgb-regex/test/test.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/rgb-regex/test/test.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/rgb-regex/test/test.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/rgb-regex/test/test.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/rgb-regex/test/test.js
tang-0.2.0 spec/tang_app/node_modules/rgb-regex/test/test.js
tang-0.1.0 spec/tang_app/node_modules/rgb-regex/test/test.js
tang-0.0.9 spec/tang_app/node_modules/rgb-regex/test/test.js
enju_library-0.3.8 spec/dummy/node_modules/rgb-regex/test/test.js
jester-data-8.0.0 node_modules/rgb-regex/test/test.js