Guest User

Untitled

a guest
May 21st, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
  2.  
  3. describe App do
  4. before(:each) do
  5. @app = App.new
  6. end
  7.  
  8. it "should be valid" do
  9. @app.should be_valid
  10. end
  11.  
  12. it "gets assigned a port" do
  13. @app.port.should_not_be nil
  14. end
  15. end
Add Comment
Please, Sign In to add comment