private
+ def sign_in_as(user)
+ visit login_path
+ within "form", :text => "Email Address or Username" do
+ fill_in "username", :with => user.email
+ fill_in "password", :with => "test"
+ click_on "Log in"
+ end
+ end
+
+ def sign_out
+ visit logout_path
+ click_on "Logout", :match => :first
+ end
+
def within_sidebar(&block)
within "#sidebar_content", &block
end