This repository has been archived by the owner on Sep 6, 2019. It is now read-only.
forked from stoplightio/api-spec-converter
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Rana Md Ali Ahsan
committed
Nov 12, 2015
1 parent
956de0a
commit cfd7314
Showing
4 changed files
with
34 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
var expect = require("chai").expect, | ||
specConverter = require("../index"); | ||
|
||
describe("index", function() { | ||
it("should export converter api"); | ||
it("should export export api"); | ||
it("should export import api"); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
var expect = require("chai").expect, | ||
converter = require("../lib/converter"); | ||
|
||
describe("Converter", function() { | ||
describe("constructor", function(){ | ||
it('should successfully create new converter instance'); | ||
it('should validate from/to format, throw error otherwise'); | ||
}); | ||
describe("loadFile", function(){ | ||
it('should successfully load comaptible file'); | ||
it('should throw error for format incompatible file'); | ||
}); | ||
describe("loadData", function(){ | ||
it('should successfully load raw data'); | ||
it('should throw error for format incompatible data'); | ||
}); | ||
describe("convert", function(){ | ||
it('should successfully convert and return converted data'); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
-t 10000 | ||
--recursive | ||
|