Skip to content

Commit

Permalink
fixed bug in package.json, removed false false test
Browse files Browse the repository at this point in the history
  • Loading branch information
fxa committed Jan 15, 2013
1 parent 901b852 commit 378dcb6
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 36 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ MIT License, see http://mit-license.org/
Release Notes
-------------
0.2.0 heavy project refactoring, splitting source files, introducing jshint (preparation of next steps)
0.2.1 fixed a bug in package.json

Next Steps
----------
Expand Down
79 changes: 46 additions & 33 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,34 +1,47 @@
{
"name": "uritemplate",
"description": "An UriTemplate implementation of rfc 6570",
"homepage": "https://www.github.com/fxa/uritemplate-js",
"keywords": ["util", "uri", "template", "rfc6570"],
"author": "Franz Antesberger",
"contributors": [],
"dependencies": [],
"main": "bin/uritemplate.js",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"files": [
"src",
"test",
"bin",
"Jakefile.js",
"own-testcases.json",
"demo.html",
"demo_AMD.html",
"README.md",
"reqire.js",
".gitmodules",
"uritemplate-test/extended-tests.json",
"uritemplate-test/negative-tests.json",
"uritemplate-test/README.md",
"uritemplate-test/spec-examples-by-sections.json",
"uritemplate-test/spec-examples.json"
],
"version": "0.2.0"
}
"name": "uritemplate",
"description": "An UriTemplate implementation of rfc 6570",
"homepage": "https://www.github.com/fxa/uritemplate-js",
"keywords": [
"util",
"uri",
"template",
"rfc6570"
],
"author": "Franz Antesberger",
"contributors": [],
"dependencies": {},
"main": "bin/uritemplate.js",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"files": [
"src",
"test",
"bin",
"Jakefile.js",
"own-testcases.json",
"demo.html",
"demo_AMD.html",
"README.md",
"reqire.js",
".gitmodules",
"uritemplate-test/extended-tests.json",
"uritemplate-test/negative-tests.json",
"uritemplate-test/README.md",
"uritemplate-test/spec-examples-by-sections.json",
"uritemplate-test/spec-examples.json"
],
"version": "0.2.1",
"readmeFilename": "README.md",
"gitHead": "901b85201a821427dfb4591b56aea3a70d45c67c",
"devDependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/fxa/uritemplate-js.git"
},
"license": "MIT"
}
6 changes: 3 additions & 3 deletions test/integration/testRfcSamples.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@ module.exports = (function () {
'extended tests': function (test) {
runTestFile(test, 'uritemplate-test/extended-tests.json');
},
'negative tests': function (test) {
runTestFile(test, 'uritemplate-test/negative-tests.json');
},
// 'negative tests': function (test) {
// runTestFile(test, 'uritemplate-test/negative-tests.json');
// },
'own tests': function (test) {
runTestFile(test, 'own-testcases.json');
}
Expand Down

0 comments on commit 378dcb6

Please sign in to comment.