Skip to content

Instantly share code, notes, and snippets.

@ciwolsey
Created November 28, 2014 03:38
Show Gist options
  • Select an option

  • Save ciwolsey/3acff4a01425294f0270 to your computer and use it in GitHub Desktop.

Select an option

Save ciwolsey/3acff4a01425294f0270 to your computer and use it in GitHub Desktop.
describe("The hostlogs", function(){
it("should allow inserting", function(){
amount = HostLogs.find().count();
HostLogs.insert({ip: "1.1.1.1", port: "80"});
newAmount = HostLogs.find().count();
newAmount.should.equal(amount + 1);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment