Advertisement
Guest User

Untitled

a guest
Mar 30th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. test-only models.UserTest.createAUser
  2.  
  3. [info] Passed: Total 0, Failed 0, Errors 0, Passed 0
  4. [info] No tests to run for test:testOnly
  5. [success] Total time: 0 s
  6.  
  7. "The plus sign" should {
  8. "add two numbers" in {
  9. 2 + 3 === 5
  10. }
  11. "be communatative" in {
  12. 1 + 2 === 2 + 1
  13. }
  14. }
  15.  
  16. #!/bin/bash
  17.  
  18. HTTPS_PORT=8443
  19. APPLICATION_SECRET=`date | md5sum`
  20. CACHEDHOST=berne:11211
  21. DATABASE_URL=jdbc:postgresql://foo/expense_dev
  22. DATABASE_USER=yyyyyy
  23. DATABASE_PWD=xxxxxxx
  24. activator -jvm-debug 9998 test-only ApplicationSpec -Dconfig.file=conf/application.conf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement