Skip to content

Instantly share code, notes, and snippets.

@yeehaa123
Created April 23, 2013 10:33
Show Gist options
  • Save yeehaa123/5442505 to your computer and use it in GitHub Desktop.
Save yeehaa123/5442505 to your computer and use it in GitHub Desktop.
require 'sinatra'
require 'rspec'
require 'rack/test'
require 'pry'
get '/' do
@title = "rock, paper, scissors"
if params[:guess]
erb "Scissors"
else
erb :home
end
end
set :environment, :test
describe 'Rock Paper Scissors App' do
include Rack::Test::Methods
def app
Sinatra::Application
end
it "says welcome to rock, paper, scissors" do
get '/'
last_response.should be_ok
last_response.body.should include "welcome to rock, paper, scissors"
end
it "when I say Rock it should respond with scissors" do
get '/', guess: "Rock"
last_response.body.should include "Scissors"
end
end
__END__
@@form
@@home
<h1>welcome to <%= @title %></h1>
@@layout
<!doctype html>
<html lang="en">
<head>
<title><%= @title %></title>
<meta charset="utf-8">
</head>
<body>
<%= yield %>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment