haraka-config
Advanced tools
Comparing version 1.0.6 to 1.0.7
# 1.0.7 - 2016-11-17 | ||
* update tests for appveyor (Windows) compatibility #9 | ||
# 1.0.6 - 2016-11-10 | ||
@@ -3,0 +7,0 @@ |
@@ -6,3 +6,3 @@ { | ||
"description": "Haraka's config file loader", | ||
"version": "1.0.6", | ||
"version": "1.0.7", | ||
"homepage": "http://haraka.github.io", | ||
@@ -15,3 +15,3 @@ "repository": { | ||
"engines": { | ||
"node": ">= 0.12.16" | ||
"node": ">= 4" | ||
}, | ||
@@ -18,0 +18,0 @@ "dependencies": { |
[![Build Status][ci-img]][ci-url] | ||
[![Coverage Status][cov-img]][cov-url] | ||
[![Code Climate][clim-img]][clim-url] | ||
[![Windows Build status][apv-img]][apv-url] | ||
@@ -289,1 +291,5 @@ # haraka-config | ||
[cov-url]: https://codecov.io/github/haraka/haraka-config?branch=master | ||
[clim-img]: https://codeclimate.com/github/haraka/haraka-config/badges/gpa.svg | ||
[clim-url]: https://codeclimate.com/github/haraka/haraka-config | ||
[apv-img]: https://ci.appveyor.com/api/projects/status/lme4otppxe22me0j/branch/master?svg=true | ||
[apv-url]: https://ci.appveyor.com/project/msimerson/haraka-config/branch/master |
@@ -33,3 +33,3 @@ 'use strict'; | ||
test.expect(1); | ||
test.ok(/haraka\-config\/test\/config$/.test(this.config.root_path)); | ||
test.equal(path.resolve('test','config'), this.config.root_path); | ||
test.done(); | ||
@@ -40,4 +40,4 @@ }, | ||
var c = this.config.module_config('foo', 'bar'); | ||
test.equal(c.root_path, 'foo/config'); | ||
test.equal(c.overrides_path, 'bar/config'); | ||
test.equal(c.root_path, path.join('foo','config')); | ||
test.equal(c.overrides_path, path.join('bar','config')); | ||
test.done(); | ||
@@ -54,3 +54,3 @@ }, | ||
// console.log(config); | ||
test.equal(config.root_path, '/tmp/config'); | ||
test.equal(config.root_path, path.join('/tmp','config')); | ||
test.done(); | ||
@@ -57,0 +57,0 @@ }, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
71013
42
295