Skip to content

Instantly share code, notes, and snippets.

@wycats
Created October 3, 2008 06:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save wycats/14516 to your computer and use it in GitHub Desktop.
Save wycats/14516 to your computer and use it in GitHub Desktop.
given "logged in" do
login
end
context "when logged in" do
context "Homepage: url(:home)", :given => "logged in" do
before(:each) do
@rack = request(:home)
end
it "allows the user to visit" do
@rack.should be_successful
@rack.body.should == "Welcome"
end
it "returns an HTML page" do
@rack.should have_content_type(:html)
end
end
end
context "when not logged in" do
describe "Homepage: url(:home)" do
it "redirects the user to the login screen" do
requesting(:home).should redirect_to(:get_login)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment