Skip to content

Instantly share code, notes, and snippets.

@rstarmer
Created December 31, 2015 10:22
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 rstarmer/99b1a683df881a040941 to your computer and use it in GitHub Desktop.
Save rstarmer/99b1a683df881a040941 to your computer and use it in GitHub Desktop.
Rspec file describing a simple test for our ruby application
# spec/hw_spec.rb
require File.expand_path '../spec_helper.rb', __FILE__
describe "My Sinatra Application" do
it "expect accessing the home page to be successful" do
get '/'
expect(last_response).to be_ok
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment