Guest User

Untitled

a guest
Sep 25th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. describe("MyJSUtilities", function() {
  2.  
  3. describe(">String Utils", function() {
  4. it("should be able to lower case a string",function() {
  5. expect().nothing();
  6. });
  7. it("should be able to upper case a string",function() {
  8. expect().nothing();
  9. });
  10. it("should be able to confirm if a string contains a substring",function() {
  11. expect().nothing();
  12. });
  13. it("should be able repeat a string multiple times",function() {
  14. expect().nothing();
  15. });
  16.  
  17. });
  18.  
  19. describe("Math Utils", function() {
  20. describe("Basic Math Utils", function() {
  21. it("should be able to tell if a number is even",function() {
  22. expect().nothing();
  23. });
  24. it("should be able to tell if a number is odd",function() {
  25. expect().nothing();
  26. });
  27.  
  28. });
  29. describe("Advanced Math Utils", function() {
  30. it("should be able to tell if a number is prime",function() {
  31. expect().nothing();
  32. });
  33. it("should be able to calculate the fibonacci of a number",function() {
  34. expect().nothing();
  35. });
  36. });
  37. });
  38.  
  39. });
Add Comment
Please, Sign In to add comment