Skip to content

Instantly share code, notes, and snippets.

@plato-cambrian
Created September 9, 2014 17:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save plato-cambrian/265d1d6cc54f63185235 to your computer and use it in GitHub Desktop.
Save plato-cambrian/265d1d6cc54f63185235 to your computer and use it in GitHub Desktop.
it("exists",function(){
});
describe("japi.groups.list()",function() {
it("exists",function(){
});
it("is a method", function() {
});
it('returns an array', function(){
});
describe('updates with newly saved groups', function(){
it("does not show a newly created unsaved group", function(){
});
it("shows a newly created and saved group", function(){
})
})
});
describe("japi.groups.build()",function() {
it("exists",function(){
});
it("is a method", function() {
});
it("throws an error when invoked with no arguments", function(){
});
it("returns a group of type `open` when invoked with the argument 'open'", function(){
});
it("returns a group of type `broadcast` when invoked with the argument 'broadcast'", function(){
});
xit("returns a cloned group when invoked with a group as the argument", function(){
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment